12345678910111213 |
- package com.cooleshow.base.constanst;
- import com.cooleshow.base.BuildConfig;
- import com.cooleshow.base.common.BaseApplication;
- import com.cooleshow.base.utils.AppUtils;
- /**
- * Author by pq, Date on 2022/4/22.
- */
- public class Constanst {
- public static final String CLIENT = BaseApplication.Companion.isTeacherClient() ? "teacher" : "student";
- public static final String COLEXIUAPPA = "COLEXIUAPPA";//H5 js接口注册interfaceName
- }
|