Home | History | Annotate | Download | only in cube-with-layers
      1 <?xml version="1.0"?>
      2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.CubeWithLayers" android:versionCode="1" android:versionName="1.0">
      3 
      4     <!-- Allow this app to read and write files (for use by tracing libraries). -->
      5     <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
      6     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
      7     <uses-permission android:name="android.permission.INTERNET"/>
      8 
      9     <!-- This is the platform API where NativeActivity was introduced. -->
     10     <uses-sdk android:minSdkVersion="23" android:targetSdkVersion="23"/>
     11 
     12     <!-- This .apk has no Java code itself, so set hasCode to false. -->
     13     <application android:label="@string/app_name" android:hasCode="false" android:debuggable='true'>
     14 
     15         <!-- Our activity is the built-in NativeActivity framework class.
     16              This will take care of integrating with our NDK code. -->
     17         <activity android:name="android.app.NativeActivity" android:label="@string/app_name" android:exported="true">
     18             <!-- Tell NativeActivity the name of or .so -->
     19             <meta-data android:name="android.app.lib_name" android:value="Cube"/>
     20             <intent-filter>
     21                 <action android:name="android.intent.action.MAIN"/>
     22                 <category android:name="android.intent.category.LAUNCHER"/>
     23             </intent-filter>
     24         </activity>
     25     </application>
     26 
     27 </manifest>
     28