You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.3 KiB
72 lines
2.3 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.gyf.csams">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
<!--已启用分区存储-->
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
|
android:maxSdkVersion="28" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:fullBackupOnly="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="${APP_NAME}"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.CSAMS"
|
|
android:name=".APP">
|
|
|
|
<!--初始化界面-->
|
|
<activity
|
|
android:name=".InitActivity"
|
|
android:exported="true"
|
|
android:theme="@style/Theme.CSAMS.NoActionBar">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<!--登录界面-->
|
|
<activity
|
|
android:name=".account.ui.AccountActivity"
|
|
android:windowSoftInputMode="stateVisible|adjustResize"
|
|
android:exported="true">
|
|
</activity>
|
|
|
|
<!--主界面-->
|
|
<activity
|
|
android:name=".main.ui.MainActivity"
|
|
android:exported="true">
|
|
</activity>
|
|
|
|
<!--注册社团界面-->
|
|
<activity android:name=".association.ui.RegAssociationActivity"
|
|
android:exported="true">
|
|
</activity>
|
|
|
|
<!--社团主界面-->
|
|
<activity android:name=".association.ui.AssociationActivity"
|
|
android:exported="true">
|
|
</activity>
|
|
|
|
<!--社团重命名主界面-->
|
|
<activity android:name=".association.ui.ReNameActivity"
|
|
android:exported="true">
|
|
</activity>
|
|
|
|
<!--题库界面-->
|
|
<activity android:name=".association.ui.ExamActivity"
|
|
android:exported="true">
|
|
</activity>
|
|
|
|
<!--活动详情-->
|
|
<activity android:name=".activity.ui.ActivityDetailActivity"
|
|
android:exported="true">
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest> |