mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 06:05:44 +00:00
98ab42ac64
--HG-- extra : commitid : 5fizArOKIYO extra : rebase_source : b3241c4a14850848f025733f9a41b069baca910d extra : source : f80912ecfa87584394d22e28ed09e68c182d1b35 extra : histedit_source : 7fd02c5b614dfb5f0d7780f2d4701576dade9769
97 lines
4.3 KiB
XML
97 lines
4.3 KiB
XML
#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="@MOZ_ANDROID_MIN_SDK_VERSION@"
|
|
#ifdef MOZ_ANDROID_MAX_SDK_VERSION
|
|
android:maxSdkVersion="@MOZ_ANDROID_MAX_SDK_VERSION@"
|
|
#endif
|
|
android:targetSdkVersion="23"/>
|
|
|
|
<!-- The bouncer APK and the main APK should define the same set of
|
|
<permission>, <uses-permission>, and <uses-feature> elements. This reduces
|
|
the likelihood of permission-related surprises when installing the main APK
|
|
on top of a pre-installed bouncer APK. Add such shared elements in the
|
|
fileincluded here, so that they can be referenced by both APKs. -->
|
|
#include ../base/FennecManifest_permissions.xml.in
|
|
|
|
<application android:label="@MOZ_APP_DISPLAYNAME@"
|
|
android:icon="@drawable/icon"
|
|
android:logo="@drawable/logo"
|
|
android:hardwareAccelerated="true"
|
|
android:allowBackup="false"
|
|
# The preprocessor does not yet support arbitrary parentheses, so this cannot
|
|
# be parenthesized thus to clarify that the logical AND operator has precedence:
|
|
# !defined(MOZILLA_OFFICIAL) || (defined(NIGHTLY_BUILD) && defined(MOZ_DEBUG))
|
|
#if !defined(MOZILLA_OFFICIAL) || defined(NIGHTLY_BUILD) && defined(MOZ_DEBUG)
|
|
android:debuggable="true">
|
|
#else
|
|
android:debuggable="false">
|
|
#endif
|
|
|
|
<activity
|
|
android:name="@MOZ_ANDROID_BROWSER_INTENT_CLASS@"
|
|
android:label="@MOZ_APP_DISPLAYNAME@"
|
|
android:theme="@android:style/Theme.Translucent">
|
|
|
|
<!-- Aping org.mozilla.gecko.BrowserApp. -->
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
<category android:name="android.intent.category.MULTIWINDOW_LAUNCHER"/>
|
|
<category android:name="android.intent.category.APP_BROWSER" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
|
|
<meta-data android:name="com.sec.minimode.icon.portrait.normal"
|
|
android:resource="@drawable/icon"/>
|
|
|
|
<meta-data android:name="com.sec.minimode.icon.landscape.normal"
|
|
android:resource="@drawable/icon" />
|
|
|
|
<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>
|
|
|
|
<!-- Aping org.mozilla.gecko.tabqueue.TabQueueDispatcher. -->
|
|
<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>
|
|
</activity>
|
|
|
|
<service
|
|
android:name="org.mozilla.bouncer.BouncerService"
|
|
android:exported="false" />
|
|
|
|
</application>
|
|
</manifest>
|