diff options
author | Michael Wright <michaelwr@google.com> | 2012-06-04 10:12:03 -0700 |
---|---|---|
committer | Michael Wright <michaelwr@google.com> | 2012-06-05 20:47:45 -0700 |
commit | 4516d89950fccbb8f44c957242a822f6af39f702 (patch) | |
tree | 1975b63a5ac6578d1e269bf244798e7dcf88bf22 /apps/DeviceConfig/AndroidManifest.xml | |
parent | 55121851dcb45f8474c2e895eb14cc8974045c86 (diff) | |
download | sdk-4516d89950fccbb8f44c957242a822f6af39f702.zip sdk-4516d89950fccbb8f44c957242a822f6af39f702.tar.gz sdk-4516d89950fccbb8f44c957242a822f6af39f702.tar.bz2 |
Added DeviceConfig application
Change-Id: Ibed1430fca56506bcc07dfc07c9494fdbf304e06
Diffstat (limited to 'apps/DeviceConfig/AndroidManifest.xml')
-rw-r--r-- | apps/DeviceConfig/AndroidManifest.xml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/apps/DeviceConfig/AndroidManifest.xml b/apps/DeviceConfig/AndroidManifest.xml new file mode 100644 index 0000000..b81f58e --- /dev/null +++ b/apps/DeviceConfig/AndroidManifest.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="com.example.android.deviceconfig" + android:versionCode="1" + android:versionName="1.0" > + + <uses-permission android:name="android.permission.CAMERA" /> + <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> + <uses-feature android:name="android.hardware.camera" /> + + <uses-sdk + android:minSdkVersion="8" + android:targetSdkVersion="15" /> + + <application + android:icon="@drawable/icon" + android:label="@string/app_name" > + <activity + android:name=".MyActivity" + 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> |