Home | History | Annotate | Download | only in Teapot
      1 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      2     package="com.sample.teapot"
      3     android:versionCode="1"
      4     android:versionName="1.0" >
      5 
      6     <uses-sdk
      7         android:minSdkVersion="11"
      8         android:targetSdkVersion="19" />
      9     <uses-feature android:glEsVersion="0x00020000"></uses-feature>
     10     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
     11     <application
     12         android:allowBackup="true"
     13         android:icon="@drawable/ic_launcher"
     14         android:label="@string/app_name"
     15         android:theme="@style/AppTheme"
     16         android:hasCode="true"
     17         android:name="com.sample.teapot.TeapotApplication"
     18         >
     19 
     20         <!-- Our activity is the built-in NativeActivity framework class.
     21              This will take care of integrating with our NDK code. -->
     22         <activity android:name="com.sample.teapot.TeapotNativeActivity"
     23                 android:label="@string/app_name"
     24                 android:configChanges="orientation|keyboardHidden">
     25             <!-- Tell NativeActivity the name of or .so -->
     26             <meta-data android:name="android.app.lib_name"
     27                     android:value="TeapotNativeActivity" />
     28             <intent-filter>
     29                 <action android:name="android.intent.action.MAIN" />
     30                 <category android:name="android.intent.category.LAUNCHER" />
     31             </intent-filter>
     32         </activity>
     33     </application>
     34 </manifest>
     35