embedding/android/geckoview_example/AndroidManifest.xml.in

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

michael@0 1 #filter substitution
michael@0 2 <?xml version="1.0" encoding="utf-8"?>
michael@0 3 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
michael@0 4 package="org.mozilla.geckoviewexample"
michael@0 5 android:versionCode="1"
michael@0 6 android:versionName="1.0">
michael@0 7 <uses-sdk android:minSdkVersion="8"
michael@0 8 android:targetSdkVersion="@ANDROID_TARGET_SDK@"/>
michael@0 9 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
michael@0 10 <uses-permission android:name="android.permission.INTERNET"/>
michael@0 11 <uses-feature android:glEsVersion="0x00020000" android:required="true" />
michael@0 12 <application android:label="@string/app_name"
michael@0 13 android:icon="@drawable/ic_launcher"
michael@0 14 android:hardwareAccelerated="true">
michael@0 15 <activity android:name="GeckoViewExample"
michael@0 16 android:label="@string/app_name">
michael@0 17 <intent-filter>
michael@0 18 <action android:name="android.intent.action.MAIN" />
michael@0 19 <category android:name="android.intent.category.LAUNCHER" />
michael@0 20 </intent-filter>
michael@0 21 </activity>
michael@0 22 </application>
michael@0 23 </manifest>

mercurial