123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496 |
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- package="com.cooleshow.teacher">
- <uses-sdk tools:overrideLibrary="com.liulishuo.filedownloader"/>
- <permission
- android:name="${applicationId}.permission.JPUSH_MESSAGE"
- android:protectionLevel="signature" />
- <uses-permission android:name="${applicationId}.permission.JPUSH_MESSAGE" />
- <permission
- android:name="${applicationId}.permission.MIPUSH_RECEIVE"
- android:protectionLevel="signature" />
- <uses-permission android:name="${applicationId}.permission.MIPUSH_RECEIVE" />
- <uses-permission android:name="com.huawei.android.launcher.permission.CHANGE_BADGE" />
- <uses-permission android:name="android.permission.INTERNET" />
- <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
- <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
- <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
- <uses-permission android:name="android.permission.CAMERA" />
- <uses-permission android:name="android.permission.RECORD_AUDIO" />
- <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
- <queries>
- <package android:name="com.tencent.mm" /> <!-- // 指定微信包名 -->
- <package android:name="com.tencent.mobileqq" /> <!-- //指定qq包名 -->
- <package android:name="com.sina.weibo" /> <!-- //指定微博包名 -->
- <package android:name="com.qzone" /> <!-- //指定QQ空间包名 -->
- </queries>
- <application
- android:name=".App"
- android:allowBackup="true"
- android:icon="@mipmap/ic_launcher"
- android:label="${k_appName}"
- android:networkSecurityConfig="@xml/network_security_config"
- android:requestLegacyExternalStorage="true"
- android:supportsRtl="true"
- android:theme="@style/AppTheme"
- android:largeHeap="true"
- tools:replace="android:allowBackup,label">
- <meta-data
- android:name="design_width_in_dp"
- android:value="375" />
- <activity
- android:name=".ui.mine.UnBindBankCardActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:exported="false" />
- <activity
- android:name=".ui.splash.SplashActivity"
- android:exported="true"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait"
- android:theme="@style/SplashTheme">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- <intent-filter>
- <action android:name="android.intent.action.VIEW" />
- <category android:name="android.intent.category.DEFAULT" />
- <category android:name="android.intent.category.BROWSABLE" />
- <data
- android:host="html"
- android:path="/SplashActivity"
- android:port="8888"
- android:scheme="colexiuteacher" />
- </intent-filter>
- </activity>
- <activity
- android:name=".ui.main.MainActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:exported="true"
- android:launchMode="singleTask"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="adjustPan">
- <intent-filter>
- <!-- 这个action是给极光推送跳转的 oppo推送要求push的intent-filter应与其他功能的intent-filter区分开,勿添加其他action与data标签-->
- <action android:name="cn.jiguang.push.customAction" />
- <category android:name="android.intent.category.DEFAULT" />
- </intent-filter>
- <intent-filter>
- <!-- 这个action是给融云推送跳转的,比如华为的离线消息点击-->
- <action android:name="android.intent.action.VIEW" />
- <category android:name="android.intent.category.DEFAULT" />
- <data
- android:host="${applicationId}"
- android:pathPrefix="/conversationlist"
- android:scheme="rong" />
- </intent-filter>
- <intent-filter>
- <!-- 这个action是给融云推送跳转的,比如小米手机等消息点击-->
- <action android:name="android.intent.action.VIEW" />
- <category android:name="android.intent.category.DEFAULT" />
- <data
- android:host="${applicationId}"
- android:pathPrefix="/conversation/"
- android:scheme="rong" />
- </intent-filter>
- </activity>
- <activity
- android:name=".ui.splash.GuideActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.course.MineCourseActivity"
- android:windowSoftInputMode="adjustPan"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.web.WebActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.web.HtmlActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="locked"
- android:windowSoftInputMode="adjustPan" />
- <activity
- android:name=".ui.web.HtmlHorizontalScreenActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="landscape" />
- <activity
- android:name=".ui.web.AccompanyActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="landscape" />
- <activity
- android:name=".ui.course.SparringCourseDetailActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="adjustNothing" />
- <activity
- android:name=".ui.course.PianoRoomCourseDetailActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="adjustNothing" />
- <activity
- android:name=".ui.course.GroupCourseDetailActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="adjustNothing" />
- <activity
- android:name=".ui.course.PianoRoomCourseHomeWorkActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.comment.ReceivedCommentActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="adjustPan" />
- <activity
- android:name=".ui.comment.CourseCommentActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="adjustPan" />
- <activity
- android:name=".ui.comment.CourseCommentDetailActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.comment.CourseReceivedCommentDetailActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.homepage.HomePageActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="adjustPan" />
- <activity
- android:name=".ui.minestyle.MineStylePageActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.minestyle.MyStyleVideoListActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.minestyle.TeachableInstrumentActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.mine.PersonalSettingActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.mine.SettingActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.mine.ModifyNickNameActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.mine.CheckModifyPhoneNumActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.mine.ModifyPhoneNumActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.mine.ModifyPasswordActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.mine.PersonalCertificationActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <provider
- android:name="androidx.core.content.FileProvider"
- android:authorities="com.cooleshow.teacher.fileprovider"
- android:exported="false"
- android:grantUriPermissions="true"
- tools:replace="android:authorities">
- <meta-data
- android:name="android.support.FILE_PROVIDER_PATHS"
- android:resource="@xml/rc_file_path"
- tools:replace="android:resource" />
- </provider>
- <activity
- android:name=".ui.mine.AboutActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.mine.FeedBackActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.mine.MyBankCardActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.mine.BindBankCardActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.mine.InputBankVCodeActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.mine.BindCardSuccessActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.course.MineLiveCourseActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.course.MineGroupCourseActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.course.CreateLiveCourseInfoActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.course.CreateLiveCourseArrangementActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.course.MineVideoCourseActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.live.CreateLiveActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.live.LiveListActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.score.MineScoreActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="adjustPan" />
- <activity
- android:name=".ui.work.HomeWorkActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.income.MineIncomeActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.income.FrozenAmountActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.income.PendingAmountActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.income.WithdrawalActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.income.WithdrawalSuccessActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.income.WithdrawalRecordActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.message.MessageBoxActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.mine.PayTestActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".wxapi.WXPayEntryActivity"
- android:exported="true"
- android:launchMode="singleTop">
- <intent-filter>
- <action android:name="android.intent.action.VIEW" />
- <category android:name="android.intent.category.DEFAULT" />
- <data android:scheme="wx149a928c415c137a" />
- </intent-filter>
- </activity>
- <activity
- android:name=".ui.work.AssignHomeworkActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.mine.NetworkMonitoringActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.mine.EquipmentTestActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.income.EarningStatisticsActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.live.TeacherLiveRoomActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:exported="false"
- android:launchMode="singleTask"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="adjustResize" /> <!-- 分享开始 -->
- <activity
- android:name=".ui.mine.CoursewareListActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="adjustPan" />
- <activity
- android:name=".wxapi.WXEntryActivity"
- android:configChanges="keyboardHidden|orientation|screenSize"
- android:exported="true"
- android:theme="@android:style/Theme.Translucent.NoTitleBar" />
- <activity
- android:name=".ui.mine.UnBindTenantActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="adjustPan" />
- <activity
- android:name=".ui.mine.SelectTenantMemberActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="adjustPan" />
- <activity
- android:name=".ui.mine.UserDetailActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="adjustPan" />
- <activity
- android:name=".ui.course.VIPCourseSettingActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="adjustPan" />
- <activity
- android:name=".ui.course.VIPOrInterestCourseGroupDetailActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="adjustPan" />
- <activity
- android:name=".ui.course.PianoCourseGroupDetailActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="adjustPan" />
- <activity
- android:name=".ui.course.GroupCourseGroupDetailActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout|uiMode"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="adjustPan" />
- <activity
- android:name="com.tencent.tauth.AuthActivity"
- android:launchMode="singleTask"
- android:noHistory="true">
- <intent-filter>
- <action android:name="android.intent.action.VIEW" />
- <category android:name="android.intent.category.DEFAULT" />
- <category android:name="android.intent.category.BROWSABLE" />
- <data android:scheme="tencent100424468" />
- </intent-filter>
- </activity>
- <activity
- android:name="com.tencent.connect.common.AssistActivity"
- android:configChanges="orientation|keyboardHidden|screenSize"
- android:theme="@android:style/Theme.Translucent.NoTitleBar"
- tools:replace="android:configChanges" />
- <meta-data
- android:name="qqappid"
- android:value="1110018403" />
- <service
- android:name=".push.PushService"
- android:enabled="true"
- android:exported="false"
- android:process=":pushcore">
- <intent-filter>
- <action android:name="cn.jiguang.user.service.action" />
- </intent-filter>
- </service> <!-- User defined. For test only 用户自定义的广播接收器 -->
- <service
- android:name=".push.MyJPushMessageReceiver"
- android:enabled="true"
- android:exported="false">
- <intent-filter>
- <action android:name="cn.jpush.android.intent.RECEIVE_MESSAGE" />
- <category android:name="${applicationId}" />
- </intent-filter>
- </service> <!-- JPush结束 -->
- <service
- android:name=".push.MyHWPushService"
- android:exported="false">
- <intent-filter>
- <action android:name="com.huawei.push.action.MESSAGING_EVENT" />
- </intent-filter>
- </service>
- <!-- 融云开始 -->
- <!--小米-->
- <receiver
- android:name=".push.CustomMiMessageReceiver"
- android:exported="true">
- <intent-filter>
- <action android:name="com.xiaomi.mipush.RECEIVE_MESSAGE" />
- </intent-filter>
- <intent-filter>
- <action android:name="com.xiaomi.mipush.MESSAGE_ARRIVED" />
- </intent-filter>
- <intent-filter>
- <action android:name="com.xiaomi.mipush.ERROR" />
- </intent-filter>
- </receiver>
- <!--vivo-->
- <receiver android:name=".push.VivoPushReceiver">
- <intent-filter>
- <action android:name="com.vivo.pushclient.action.RECEIVE" />
- </intent-filter>
- </receiver>
- </application>
- </manifest>
|