AndroidManifest.xml 1.1 KB

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:versionCode="1"
  4. android:versionName="1.0"
  5. package="com.goocursor.android">
  6. <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="34" />
  7. <application android:allowBackup="true"
  8. android:label="GooCursor"
  9. android:hardwareAccelerated="true">
  10. <activity android:name="crc6477f0d89a9cfd64b1.MainActivity"
  11. android:exported="true"
  12. android:launchMode="singleInstance"
  13. android:screenOrientation="fullUser"
  14. android:configChanges="orientation|keyboardHidden|keyboard|screenSize"
  15. android:windowSoftInputMode="adjustPan">
  16. <intent-filter>
  17. <action android:name="android.intent.action.MAIN" />
  18. <category android:name="android.intent.category.LAUNCHER" />
  19. </intent-filter>
  20. </activity>
  21. </application>
  22. <uses-feature android:glEsVersion="0x00020000" android:required="true" />
  23. </manifest>