mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-04-24 03:00:11 -04:00
44 lines
1.6 KiB
XML
44 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="net.wacapps.napi.android.phonegap"
|
|
android:versionCode="1"
|
|
android:versionName="1.0" >
|
|
|
|
<supports-screens
|
|
android:anyDensity="true"
|
|
android:largeScreens="true"
|
|
android:normalScreens="true"
|
|
android:resizeable="true"
|
|
android:smallScreens="true" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
|
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
|
|
<uses-sdk android:minSdkVersion="8" />
|
|
|
|
<application
|
|
android:debuggable="true"
|
|
android:icon="@drawable/wac"
|
|
android:label="@string/app_name" >
|
|
<activity
|
|
android:name=".NapiPhoneGapApp"
|
|
android:configChanges="orientation|keyboardHidden"
|
|
android:label="@string/app_name" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name="net.wacapps.napi.android.WacNapiPayment"
|
|
android:configChanges="orientation|keyboardHidden"
|
|
android:label="@string/app_name" >
|
|
<intent-filter>
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest> |