Index: libadblockplus-android-webviewapp/AndroidManifest.xml |
diff --git a/libadblockplus-android-webviewapp/AndroidManifest.xml b/libadblockplus-android-webviewapp/AndroidManifest.xml |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ca7ab806c0bbe1ba74a9bb9b003ab8af8f726d9c |
--- /dev/null |
+++ b/libadblockplus-android-webviewapp/AndroidManifest.xml |
@@ -0,0 +1,39 @@ |
+<?xml version="1.0" encoding="utf-8"?> |
+<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
+ package="org.adblockplus.libadblockplus.android.webviewapp" |
+ android:versionCode="1" |
+ android:versionName="1.0"> |
+ |
+ <uses-sdk |
+ android:minSdkVersion="21" |
+ android:targetSdkVersion="21"/> |
+ |
+ <uses-permission android:name="android.permission.INTERNET"/> |
+ <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> |
+ <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> |
+ |
+ <application |
+ android:icon="@drawable/icon" |
+ android:name=".Application" |
+ android:label="@string/app_name"> |
+ |
+ <!-- main --> |
+ <activity |
+ android:name=".MainActivity" |
+ android:label="@string/app_name" |
+ android:launchMode="singleTop"> |
+ <intent-filter> |
+ <action android:name="android.intent.action.MAIN"/> |
+ |
+ <category android:name="android.intent.category.LAUNCHER"/> |
+ </intent-filter> |
+ </activity> |
+ |
+ <!-- settings --> |
+ <activity |
+ android:name=".SettingsActivity" |
+ android:label="@string/settings_name" |
+ android:theme="@android:style/Theme.DeviceDefault.Light"/> |
+ </application> |
+ |
+</manifest> |