123456789101112131415161718192021222324252627 |
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.yyxx.lab">
- <application
- android:name=".DemoApplication"
- android:allowBackup="true"
- android:icon="@mipmap/ic_launcher"
- android:label="@string/app_name"
- android:requestLegacyExternalStorage="true"
- android:supportsRtl="true"
- android:theme="@style/AppTheme">
- <activity
- android:name=".DemoActivity"
- android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
- android:exported="true"
- android:launchMode="singleTask"
- android:screenOrientation="portrait">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- </application>
- </manifest>
|