dcdd57faf0
This CL is the first step in a series needed to move the android directory into trunk. After the copy we will update GYP and DEPS to point to the new location and only then remove the original directory. git-svn-id: http://skia.googlecode.com/svn/trunk@8891 2bbb7eff-a529-9590-31e7-b0007b416f81
31 lines
1.4 KiB
XML
31 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.skia"
|
|
android:versionCode="1"
|
|
android:versionName="1.0">
|
|
<uses-sdk android:minSdkVersion="14" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.ACCESS_ALL_EXTERNAL_STORAGE" />
|
|
<!-- Needed to add to the download manager. -->
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<application android:label="SkiaAndroid">
|
|
<receiver android:name=".SkiaReceiver" android:enabled="true">
|
|
<intent-filter>
|
|
<action android:name="com.skia.intent.action.LAUNCH_SKIA" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<service android:name=".SkiaIntentService"
|
|
android:process=":skia_native">
|
|
</service>
|
|
<activity android:name=".SkiaSampleActivity"
|
|
android:theme="@android:style/Theme.Holo.Light"
|
|
android:configChanges="orientation|screenSize"
|
|
android:label="@string/app_name">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|