• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3      package="com.example.native_plasma"
4      android:versionCode="1"
5      android:versionName="1.0">
6    <uses-sdk android:minSdkVersion="9" />
7    <application android:label="@string/app_name"
8                 android:hasCode="false" android:debuggable="true">
9        <activity android:name="android.app.NativeActivity"
10                  android:label="@string/app_name">
11            <meta-data android:name="android.app.lib_name"
12                    android:value="native-plasma" />
13            <intent-filter>
14                <action android:name="android.intent.action.MAIN" />
15                <category android:name="android.intent.category.LAUNCHER" />
16            </intent-filter>
17        </activity>
18    </application>
19</manifest>
20