| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| | | xmlns:tools="http://schemas.android.com/tools" |
| | | tools:ignore="ProtectedPermissions" |
| | | package="com.duqing.missions" > |
| | | |
| | | <uses-permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE" /> |
| | | <application |
| | | android:name=".MyApplication" |
| | | android:allowBackup="true" |
| | | android:icon="@mipmap/ic_launcher" |
| | | android:label="@string/app_name" |
| | |
| | | android:supportsRtl="true" |
| | | android:theme="@style/Theme.Missions" > |
| | | <activity |
| | | android:name=".MainActivity" |
| | | android:name=".ui.main.MainActivity" |
| | | android:exported="true" |
| | | android:label="@string/app_name" > |
| | | <intent-filter> |
| | |
| | | <category android:name="android.intent.category.LAUNCHER" /> |
| | | </intent-filter> |
| | | </activity> |
| | | <activity android:name=".ui.login.view.LoginActivity" /> |
| | | </application> |
| | | |
| | | </manifest> |