|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- Copyright 2014 A.C.R. Development -->
|
|
|
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="acr.browser.lightning"
|
|
|
|
android:versionCode="77"
|
|
|
|
android:versionName="4.0.9a" >
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="com.android.browser.permission.READ_HISTORY_BOOKMARKS" />
|
|
|
|
<uses-permission android:name="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
|
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.location.gps"
|
|
|
|
android:required="false" />
|
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.location"
|
|
|
|
android:required="false" />
|
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.touchscreen"
|
|
|
|
android:required="false" />
|
|
|
|
|
|
|
|
<uses-sdk
|
|
|
|
android:minSdkVersion="14"
|
|
|
|
android:targetSdkVersion="22" />
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:name=".activity.BrowserApp"
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:hardwareAccelerated="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name" >
|
|
|
|
<activity
|
|
|
|
android:name=".activity.MainActivity"
|
|
|
|
android:alwaysRetainTaskState="true"
|
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden|keyboard"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:theme="@style/Theme.LightTheme" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<category android:name="android.intent.category.APP_BROWSER" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
|
|
|
<data android:scheme="http" />
|
|
|
|
<data android:scheme="https" />
|
|
|
|
<data android:scheme="about" />
|
|
|
|
<data android:scheme="javascript" />
|
|
|
|
</intent-filter>
|
|
|
|
<!--
|
|
|
|
For these schemes where any of these particular MIME types
|
|
|
|
have been supplied, we are a good candidate.
|
|
|
|
|
|
|
|
|
|
|
|
-->
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
|
|
|
<data android:scheme="http" />
|
|
|
|
<data android:scheme="https" />
|
|
|
|
<data android:scheme="inline" />
|
|
|
|
<data android:mimeType="text/html" />
|
|
|
|
<data android:mimeType="text/plain" />
|
|
|
|
<data android:mimeType="application/xhtml+xml" />
|
|
|
|
<data android:mimeType="application/vnd.wap.xhtml+xml" />
|
|
|
|
</intent-filter>
|
|
|
|
<!-- For viewing saved web archives. -->
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
|
|
|
<data android:scheme="http" />
|
|
|
|
<data android:scheme="https" />
|
|
|
|
<data android:scheme="file" />
|
|
|
|
<data android:mimeType="application/x-webarchive-xml" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.WEB_SEARCH" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
|
|
|
<data android:scheme="" />
|
|
|
|
<data android:scheme="http" />
|
|
|
|
<data android:scheme="https" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.SettingsActivity"
|
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden|keyboard"
|
|
|
|
android:label="@string/settings"
|
|
|
|
android:theme="@style/Theme.SettingsTheme" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SETTINGS" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.GeneralSettingsActivity"
|
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden|keyboard"
|
|
|
|
android:label="@string/settings_general"
|
|
|
|
android:theme="@style/Theme.SettingsTheme" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.GENERAL_SETTINGS" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.DisplaySettingsActivity"
|
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden|keyboard"
|
|
|
|
android:label="@string/settings_display"
|
|
|
|
android:theme="@style/Theme.SettingsTheme" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.DISPLAY_SETTINGS" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.PrivacySettingsActivity"
|
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden|keyboard"
|
|
|
|
android:label="@string/settings_privacy"
|
|
|
|
android:theme="@style/Theme.SettingsTheme" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.PRIVACY_SETTINGS" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.AdvancedSettingsActivity"
|
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden|keyboard"
|
|
|
|
android:label="@string/settings_advanced"
|
|
|
|
android:theme="@style/Theme.SettingsTheme" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.ADVANCED_SETTINGS" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.AboutSettingsActivity"
|
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden|keyboard"
|
|
|
|
android:label="@string/settings_about"
|
|
|
|
android:theme="@style/Theme.SettingsTheme" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.ABOUT_SETTINGS" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.IncognitoActivity"
|
|
|
|
android:alwaysRetainTaskState="true"
|
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden|keyboard"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:theme="@style/Theme.DarkTheme"
|
|
|
|
android:windowSoftInputMode="stateHidden" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.INCOGNITO" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.LicenseActivity"
|
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden|keyboard"
|
|
|
|
android:label="@string/licenses"
|
|
|
|
android:theme="@style/Theme.SettingsTheme" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.LICENSE" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.BookmarkActivity"
|
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden|keyboard"
|
|
|
|
android:label="@string/bookmark_settings"
|
|
|
|
android:theme="@style/Theme.SettingsTheme" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.BOOKMARK" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.ReadingActivity"
|
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden|keyboard"
|
|
|
|
android:label="@string/reading_mode"
|
|
|
|
android:theme="@style/Theme.SettingsTheme" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.READING" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|