https://github.com/mozilla/gecko-dev
Raw File
Tip revision: e0bb663a778e730e8c279e58e6032614dd89dffb authored by tbirdbld on 10 October 2012, 23:25:39 UTC
Added THUNDERBIRD_17_0b1_RELEASE THUNDERBIRD_17_0b1_BUILD1 tag(s) for changeset 5ae79f2880ff. DONTBUILD CLOSED TREE a=release
Tip revision: e0bb663
AndroidManifest.xml.in
#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"/>

    <compatible-screens>
        <!-- all xlarge size screens -->
        <screen android:screenSize="xlarge" android:screenDensity="ldpi" />
        <screen android:screenSize="xlarge" android:screenDensity="mdpi" />
        <screen android:screenSize="xlarge" android:screenDensity="hdpi" />
        <screen android:screenSize="xlarge" android:screenDensity="xhdpi" />
    </compatible-screens>

    <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"/>
    <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/>

    <uses-permission android:name="android.permission.WAKE_LOCK"/>
    <uses-permission android:name="android.permission.VIBRATE"/>

#ifdef MOZ_WEBSMS_BACKEND
    <!-- 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"/>
#endif

    <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"
                  android:windowSoftInputMode="stateUnspecified|adjustResize"
                  android:launchMode="singleTask"
                  android:theme="@style/GreyTheme">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>

            <!-- 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>

        <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"
                  android:theme="@style/GreyTheme"
                  android:excludeFromRecents="true">
          <intent-filter>
            <action android:name="org.mozilla.gecko.restart"/>
          </intent-filter>
        </activity>

#if MOZ_CRASHREPORTER
  <activity android:name="CrashReporter"
            android:label="@string/crash_reporter_title"
            android:icon="@drawable/crash_reporter"
            android:excludeFromRecents="true">
          <intent-filter>
            <action android:name="org.mozilla.gecko.reportCrash" />
          </intent-filter>
        </activity>
#endif

        <activity android:name="LauncherShortcuts"
                  android:label="@string/launcher_shortcuts_title"
                  android:theme="@android:style/Theme.Translucent">
            <!--  This intent-filter allows your shortcuts to be created in the launcher. -->
            <intent-filter>
                <action android:name="android.intent.action.CREATE_SHORTCUT" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity android:name="org.mozilla.gecko.VideoPlayer"
                  android:configChanges="keyboard|keyboardHidden|mcc|mnc|orientation" 
                  android:theme="@android:style/Theme.NoTitleBar" >
            <intent-filter>
                <action android:name="org.mozilla.gecko.PLAY_VIDEO" />
            </intent-filter>
        </activity>
    </application>
</manifest> 
back to top