2025-11-18 05:30:49 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
|
2025-11-19 10:56:34 +00:00
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
|
|
|
|
|
2025-11-18 05:30:49 +00:00
|
|
|
<application
|
|
|
|
|
android:name=".App"
|
|
|
|
|
android:allowBackup="true"
|
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
|
android:supportsRtl="true"
|
|
|
|
|
android:usesCleartextTraffic="true"
|
|
|
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
|
|
|
|
android:theme="@style/Theme.Architectureandroid">
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".main.MainActivity"
|
|
|
|
|
android:exported="true">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<activity android:name=".login.LoginActivity" android:exported="false" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<provider
|
|
|
|
|
android:name="androidx.startup.InitializationProvider"
|
|
|
|
|
android:authorities="${applicationId}.androidx-startup"
|
|
|
|
|
android:exported="false" >
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="com.gamedog.vididin.router.RouterInitializer"
|
|
|
|
|
android:value="androidx.startup" />
|
|
|
|
|
</provider>
|
|
|
|
|
</application>
|
|
|
|
|
|
|
|
|
|
</manifest>
|