1 <?xml version="1.0" encoding="utf-8"?> 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 package="com.example.Smoke"> 4 5 <application android:label="@string/app_name" 6 android:hasCode="false" 7 android:allowBackup="false"> 8 <activity android:name="android.app.NativeActivity" 9 android:label="@string/app_name"> 10 11 <meta-data android:name="android.app.lib_name" 12 android:value="Smoke"/> 13 14 <intent-filter> 15 <action android:name="android.intent.action.MAIN" /> 16 <category android:name="android.intent.category.LAUNCHER" /> 17 </intent-filter> 18 </activity> 19 </application> 20 </manifest> 21