aboutsummaryrefslogtreecommitdiffstats
path: root/app/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/AndroidManifest.xml')
-rw-r--r--app/AndroidManifest.xml26
1 files changed, 17 insertions, 9 deletions
diff --git a/app/AndroidManifest.xml b/app/AndroidManifest.xml
index b967836..02b0b64 100644
--- a/app/AndroidManifest.xml
+++ b/app/AndroidManifest.xml
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="fil.libre.repwifiapp"
- android:versionCode="5"
- android:versionName="0.6.2" >
+ android:versionCode="9"
+ android:versionName="0.9-beta" >
<uses-sdk
android:minSdkVersion="17"
@@ -13,6 +13,7 @@
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
+ <uses-permission android:name="android.permission.CONNECTIVITY_INTERNAL" />
<application
android:allowBackup="true"
@@ -30,26 +31,23 @@
</intent-filter>
</receiver>
- <!--
<receiver
android:name="fil.libre.repwifiapp.RepWifiIntentReceiver"
android:description="@string/receiver_description"
android:enabled="true"
android:exported="false"
- android:icon="@drawable/ic_launcher2"
+ android:icon="@drawable/ic_stat_repwifi"
android:label="RepWifiIntentReceiver" >
<intent-filter>
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
<action android:name="android.hardware.usb.action.USB_DEVICE_DETACHED" />
</intent-filter>
</receiver>
- -->
-
+
<activity
android:name="fil.libre.repwifiapp.activities.MainActivity"
android:label="@string/app_name"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" >
+ android:launchMode="singleTop" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
@@ -95,7 +93,17 @@
android:name="fil.libre.repwifiapp.activities.VpnSettingsActivity"
android:label="@string/title_activity_vpn_settings" >
</activity>
- <service android:name="de.blinkt.openvpn.api.IOpenVPNAPIService"></service>
+
+ <service android:name="de.blinkt.openvpn.api.IOpenVPNAPIService" >
+ </service>
+ <service
+ android:name="fil.libre.repwifiapp.service.ConnectionManagementService"
+ android:enabled="true"
+ android:exported="false"
+ android:process=":connsvc" >
+ </service>
</application>
+
+
</manifest>