aboutsummaryrefslogtreecommitdiff
path: root/renderScript/BasicRenderScript/BasicRenderScriptSample/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'renderScript/BasicRenderScript/BasicRenderScriptSample/AndroidManifest.xml')
-rw-r--r--renderScript/BasicRenderScript/BasicRenderScriptSample/AndroidManifest.xml29
1 files changed, 29 insertions, 0 deletions
diff --git a/renderScript/BasicRenderScript/BasicRenderScriptSample/AndroidManifest.xml b/renderScript/BasicRenderScript/BasicRenderScriptSample/AndroidManifest.xml
new file mode 100644
index 00000000..1e35dc30
--- /dev/null
+++ b/renderScript/BasicRenderScript/BasicRenderScriptSample/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.basicrenderscript"
+ android:versionCode="1"
+ android:versionName="1.0" >
+
+ <uses-sdk
+ android:minSdkVersion="8"
+ android:targetSdkVersion="19" />
+
+ <application
+ android:allowBackup="true"
+ android:icon="@drawable/ic_launcher"
+ android:label="@string/app_name"
+ android:theme="@style/AppTheme" >
+ <activity
+ android:name="com.example.android.basicrenderscript.MainActivity"
+ android:configChanges="orientation|keyboardHidden|screenSize"
+ android:label="@string/app_name"
+ android:theme="@style/FullscreenTheme" >
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ </application>
+
+</manifest>