*/}}

AndroidManifest.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.yiming.ourpaint"
  4. android:versionCode="1"
  5. android:versionName="1.0"
  6. android:debuggable="true">
  7. <uses-sdk android:minSdkVersion="24"/>
  8. <uses-feature android:glEsVersion="0x00030002" android:required="true" />
  9. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
  10. <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
  11. <!-- This .apk has no Java code itself, so set hasCode to false. -->
  12. <!-- android:icon="@mipmap/ic_launcher" -->
  13. <application
  14. android:allowBackup="false"
  15. android:icon="@drawable/icon"
  16. android:label="@string/app_name"
  17. android:hasCode="false"
  18. android:debuggable="true">
  19. <!-- Our activity is the built-in NativeActivity framework class. This will take care of integrating with our NDK code. -->
  20. <activity android:name="android.app.NativeActivity"
  21. android:label="@string/app_name"
  22. android:configChanges="orientation|keyboardHidden|screenSize"
  23. android:clearTaskOnLaunch="false"
  24. android:launchMode="singleTask">
  25. <!-- Tell NativeActivity the name of our .so -->
  26. <meta-data android:name="android.app.lib_name" android:value="ourpaint-android" />
  27. <intent-filter>
  28. <action android:name="android.intent.action.MAIN" />
  29. <category android:name="android.intent.category.LAUNCHER" />
  30. </intent-filter>
  31. </activity>
  32. </application>
  33. </manifest>