AndroidManifest.xml 1.7 KB

123456789101112131415161718
  1. <?xml version="1.0" encoding="utf-8" standalone="no" ?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:compileSdkVersion="33" android:compileSdkVersionCodename="13" package="android.dcloud.uskyMobile" platformBuildVersionCode="33" platformBuildVersionName="13">
  3. <application android:allowBackup="false" android:allowClearUserData="true" android:appComponentFactory="androidx.core.app.CoreComponentFactory" android:debuggable="false" android:extractNativeLibs="true" android:hardwareAccelerated="true" android:icon="@drawable/icon" android:label="@string/app_name" android:largeHeap="true" android:name="io.dcloud.application.DCloudApplication" android:supportsRtl="true" android:usesCleartextTraffic="true">
  4. <activity android:configChanges="fontScale|keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenLayout|screenSize|smallestScreenSize" android:exported="true" android:hardwareAccelerated="true" android:label="@string/app_name" android:name="io.dcloud.PandoraEntry" android:screenOrientation="user" android:theme="@style/DCloudTranslucentTheme" android:windowSoftInputMode="adjustResize">
  5. <intent-filter>
  6. <action android:name="android.intent.action.MAIN"/>
  7. <category android:name="android.intent.category.LAUNCHER"/>
  8. <category android:name="android.intent.category.HOME"/>
  9. <category android:name="android.intent.category.DEFAULT"/>
  10. </intent-filter>
  11. <intent-filter>
  12. <action android:name="android.intent.action.VIEW"/>
  13. <category android:name="android.intent.category.DEFAULT"/>
  14. <category android:name="android.intent.category.BROWSABLE"/>
  15. </intent-filter>
  16. </activity>
  17. </application>
  18. </manifest>