2019-12-22 14:55:27 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="org.nps.client"
|
2020-03-07 13:56:03 +00:00
|
|
|
android:versionCode="1"
|
2020-05-07 15:47:33 +00:00
|
|
|
android:versionName="0.26.7">
|
2019-12-22 14:55:27 +00:00
|
|
|
|
2020-03-07 13:56:03 +00:00
|
|
|
<application android:label="Npc" android:debuggable="true">
|
|
|
|
<activity android:name="org.golang.app.GoNativeActivity"
|
|
|
|
android:label="Npc"
|
|
|
|
android:configChanges="orientation|keyboardHidden">
|
|
|
|
<meta-data android:name="android.app.lib_name" android:value="npc"/>
|
2019-12-22 14:55:27 +00:00
|
|
|
<intent-filter>
|
2020-03-07 13:56:03 +00:00
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
2019-12-22 14:55:27 +00:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
2020-03-07 13:56:03 +00:00
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
</manifest>
|