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