2011-05-31 17:10:21 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2011-07-28 14:24:55 +00:00
|
|
|
<!-- Copyright 2011 Google Inc.
|
2011-05-31 17:10:21 +00:00
|
|
|
|
2011-07-28 14:24:55 +00:00
|
|
|
Use of this source code is governed by a BSD-style license that can be
|
|
|
|
found in the LICENSE file.
|
2011-05-31 17:10:21 +00:00
|
|
|
-->
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.skia.sampleapp"
|
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="1.0">
|
2011-06-21 14:44:57 +00:00
|
|
|
<!-- Needed to save a file to the file system. -->
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
|
|
<!-- Needed to add to the download manager. -->
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2011-05-31 17:10:21 +00:00
|
|
|
<uses-sdk android:minSdkVersion="3" />
|
|
|
|
<application android:label="@string/app_name"
|
|
|
|
android:debuggable="true">
|
|
|
|
<activity android:name=".SampleApp"
|
2011-06-13 16:58:40 +00:00
|
|
|
android:theme="@android:style/Theme.Holo.Light"
|
2011-06-15 16:49:08 +00:00
|
|
|
android:configChanges="orientation|screenSize"
|
2011-05-31 17:10:21 +00:00
|
|
|
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>
|
2011-06-15 16:49:08 +00:00
|
|
|
</manifest>
|