2011-11-18 10:28:17 -08:00
|
|
|
#filter substitution
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="@ANDROID_PACKAGE_NAME@"
|
|
|
|
android:installLocation="auto"
|
|
|
|
android:versionCode="@ANDROID_VERSION_CODE@"
|
|
|
|
android:versionName="@MOZ_APP_VERSION@"
|
|
|
|
#ifdef MOZ_ANDROID_SHARED_ID
|
|
|
|
android:sharedUserId="@MOZ_ANDROID_SHARED_ID@"
|
|
|
|
#endif
|
|
|
|
>
|
|
|
|
<uses-sdk android:minSdkVersion="5"
|
|
|
|
android:targetSdkVersion="11"/>
|
|
|
|
|
2011-12-21 08:44:06 -08:00
|
|
|
#include ../sync/manifests/SyncAndroidManifest_permissions.xml.in
|
|
|
|
|
2011-11-18 10:28:17 -08:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
2012-01-12 12:16:31 -08:00
|
|
|
<uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION"/>
|
2011-11-18 10:28:17 -08:00
|
|
|
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/>
|
|
|
|
|
2011-11-18 11:48:57 -08:00
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK"/>
|
2011-11-18 10:28:17 -08:00
|
|
|
<uses-permission android:name="android.permission.VIBRATE"/>
|
|
|
|
|
2012-01-16 10:53:09 -08:00
|
|
|
#ifdef MOZ_WEBSMS_BACKEND
|
2012-01-17 10:52:17 -08:00
|
|
|
<!-- WebSMS -->
|
|
|
|
<uses-permission android:name="android.permission.SEND_SMS"/>
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_SMS"/>
|
|
|
|
<uses-permission android:name="android.permission.WRITE_SMS"/>
|
|
|
|
<uses-permission android:name="android.permission.READ_SMS"/>
|
2012-01-16 10:53:09 -08:00
|
|
|
#endif
|
2012-01-17 10:52:17 -08:00
|
|
|
|
2011-11-18 10:28:17 -08:00
|
|
|
<uses-permission android:name="com.android.browser.permission.READ_HISTORY_BOOKMARKS"/>
|
|
|
|
<uses-permission android:name="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS"/>
|
|
|
|
|
|
|
|
<uses-feature android:name="android.hardware.location" android:required="false"/>
|
|
|
|
<uses-feature android:name="android.hardware.location.gps" android:required="false"/>
|
|
|
|
<uses-feature android:name="android.hardware.touchscreen"/>
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
<uses-feature android:name="android.hardware.camera" android:required="false"/>
|
|
|
|
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
|
|
|
|
|
|
|
|
<application android:label="@MOZ_APP_DISPLAYNAME@"
|
|
|
|
android:icon="@drawable/icon"
|
|
|
|
#if MOZILLA_OFFICIAL
|
|
|
|
android:debuggable="false">
|
|
|
|
#else
|
|
|
|
android:debuggable="true">
|
|
|
|
#endif
|
|
|
|
|
|
|
|
<activity android:name="App"
|
|
|
|
android:label="@MOZ_APP_DISPLAYNAME@"
|
|
|
|
android:configChanges="keyboard|keyboardHidden|mcc|mnc|orientation"
|
|
|
|
android:windowSoftInputMode="stateUnspecified|adjustResize"
|
|
|
|
android:launchMode="singleTask"
|
2012-02-13 10:23:09 -08:00
|
|
|
android:theme="@style/Gecko.App">
|
2011-11-18 10:28:17 -08:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2012-01-24 20:32:12 -08:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="org.mozilla.gecko.UPDATE"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
2011-11-18 10:28:17 -08:00
|
|
|
|
|
|
|
<!-- Default browser intents -->
|
|
|
|
<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>
|
|
|
|
<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="file" />
|
|
|
|
<data android:scheme="http" />
|
|
|
|
<data android:scheme="https" />
|
|
|
|
<data android:mimeType="text/html"/>
|
|
|
|
<data android:mimeType="text/plain"/>
|
|
|
|
<data android:mimeType="application/xhtml+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>
|
|
|
|
|
|
|
|
<!-- For debugging -->
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="org.mozilla.gecko.DEBUG" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2012-02-22 12:53:20 -08:00
|
|
|
<!-- Masquerade as the Resolver so that we can be opened from the Marketplace. -->
|
|
|
|
<activity-alias
|
|
|
|
android:name="com.android.internal.app.ResolverActivity"
|
|
|
|
android:targetActivity=".App"
|
|
|
|
android:exported="true" />
|
|
|
|
|
2011-11-18 10:28:17 -08:00
|
|
|
<receiver android:name="NotificationHandler">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="org.mozilla.gecko.ACTION_ALERT_CLICK" />
|
|
|
|
<action android:name="org.mozilla.gecko.ACTION_ALERT_CLEAR" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
|
|
|
<activity android:name="Restarter"
|
|
|
|
android:process="@ANDROID_PACKAGE_NAME@Restarter"
|
2011-11-23 00:01:38 -08:00
|
|
|
android:theme="@style/Gecko"
|
2011-11-18 10:28:17 -08:00
|
|
|
android:excludeFromRecents="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="org.mozilla.gecko.restart"/>
|
2012-01-24 20:32:12 -08:00
|
|
|
<action android:name="org.mozilla.gecko.restart_update"/>
|
2011-11-18 10:28:17 -08:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2011-12-21 08:44:06 -08:00
|
|
|
#include ../sync/manifests/SyncAndroidManifest_activities.xml.in
|
|
|
|
|
2011-11-18 10:28:17 -08:00
|
|
|
#if MOZ_CRASHREPORTER
|
|
|
|
<activity android:name="CrashReporter"
|
|
|
|
android:label="@string/crash_reporter_title"
|
|
|
|
android:icon="@drawable/crash_reporter"
|
2011-11-23 00:01:38 -08:00
|
|
|
android:theme="@style/Gecko"
|
2011-11-18 10:28:17 -08:00
|
|
|
android:excludeFromRecents="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="org.mozilla.gecko.reportCrash" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
#endif
|
|
|
|
|
2012-02-01 11:42:42 -08:00
|
|
|
<!-- Bug 715260: Hiding Webapps support
|
2011-11-18 10:28:17 -08:00
|
|
|
<activity android:name="LauncherShortcuts"
|
|
|
|
android:label="@string/launcher_shortcuts_title"
|
2011-11-23 00:01:38 -08:00
|
|
|
android:theme="@style/Gecko.Translucent">
|
2011-11-18 10:28:17 -08:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.CREATE_SHORTCUT" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2012-02-01 11:42:42 -08:00
|
|
|
-->
|
2011-11-18 10:28:17 -08:00
|
|
|
|
|
|
|
<activity android:name="org.mozilla.gecko.AwesomeBar"
|
2012-02-13 10:23:09 -08:00
|
|
|
android:theme="@style/Gecko.Light.AwesomeBar"
|
2011-11-18 10:28:17 -08:00
|
|
|
android:configChanges="orientation"
|
2011-11-23 00:01:38 -08:00
|
|
|
android:windowSoftInputMode="stateAlwaysVisible|adjustResize"/>
|
2011-11-18 10:28:17 -08:00
|
|
|
|
|
|
|
<activity android:name="org.mozilla.gecko.TabsTray"
|
2012-02-13 16:54:36 -08:00
|
|
|
android:theme="@style/Gecko.Translucent.TabsTray"
|
2011-12-12 14:25:29 -08:00
|
|
|
android:launchMode="singleTask"/>
|
2011-11-18 10:28:17 -08:00
|
|
|
|
|
|
|
<activity android:name="org.mozilla.gecko.GeckoPreferences"
|
2012-02-13 10:23:09 -08:00
|
|
|
android:theme="@style/Gecko.TitleBar.Preferences"
|
2011-12-20 08:33:25 -08:00
|
|
|
android:label="@string/settings_title"
|
2011-11-23 00:01:38 -08:00
|
|
|
android:excludeFromRecents="true"/>
|
2011-11-18 10:28:17 -08:00
|
|
|
|
2011-12-15 13:18:29 -08:00
|
|
|
<provider android:name="@ANDROID_PACKAGE_NAME@.db.BrowserProvider"
|
|
|
|
android:authorities="@ANDROID_PACKAGE_NAME@.db.browser"
|
|
|
|
android:permission="@ANDROID_PACKAGE_NAME@.permissions.BROWSER_PROVIDER"/>
|
2011-12-08 08:37:21 -08:00
|
|
|
|
2011-12-16 15:11:09 -08:00
|
|
|
<provider android:name="@ANDROID_PACKAGE_NAME@.db.PasswordsProvider"
|
|
|
|
android:authorities="@ANDROID_PACKAGE_NAME@.db.passwords"
|
|
|
|
android:permission="@ANDROID_PACKAGE_NAME@.permissions.BROWSER_PROVIDER"
|
|
|
|
android:protectionLevel="signature"/>
|
|
|
|
|
2012-02-27 10:10:14 -08:00
|
|
|
<provider android:name="@ANDROID_PACKAGE_NAME@.db.FormHistoryProvider"
|
|
|
|
android:authorities="@ANDROID_PACKAGE_NAME@.db.formhistory"
|
|
|
|
android:permission="@ANDROID_PACKAGE_NAME@.permissions.FORMHISTORY_PROVIDER"
|
|
|
|
android:protectionLevel="signature"/>
|
2011-12-16 15:11:09 -08:00
|
|
|
|
2011-12-21 08:44:06 -08:00
|
|
|
#include ../sync/manifests/SyncAndroidManifest_services.xml.in
|
2011-11-18 10:28:17 -08:00
|
|
|
</application>
|
2011-12-13 06:12:03 -08:00
|
|
|
|
2011-12-15 13:18:29 -08:00
|
|
|
<permission android:name="@ANDROID_PACKAGE_NAME@.permissions.BROWSER_PROVIDER"
|
2011-12-13 06:12:03 -08:00
|
|
|
android:protectionLevel="signature"/>
|
|
|
|
|
2012-02-27 10:10:14 -08:00
|
|
|
<permission android:name="@ANDROID_PACKAGE_NAME@.permissions.FORMHISTORY_PROVIDER"
|
|
|
|
android:protectionLevel="signature"/>
|
|
|
|
|
2011-11-18 10:28:17 -08:00
|
|
|
</manifest>
|