Hak Matsuda | 19b8151 | 2014-01-27 17:50:20 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | package="com.example.android.basicrenderscript" |
| 4 | android:versionCode="1" |
| 5 | android:versionName="1.0" > |
| 6 | |
Trevor Johns | 23a2c44 | 2014-10-14 13:35:21 -0700 | [diff] [blame] | 7 | <!-- Min/target SDK versions (<uses-sdk>) managed by build.gradle --> |
Hak Matsuda | 19b8151 | 2014-01-27 17:50:20 -0800 | [diff] [blame] | 8 | |
| 9 | <application |
| 10 | android:allowBackup="true" |
| 11 | android:icon="@drawable/ic_launcher" |
| 12 | android:label="@string/app_name" |
| 13 | android:theme="@style/AppTheme" > |
| 14 | <activity |
| 15 | android:name="com.example.android.basicrenderscript.MainActivity" |
| 16 | android:configChanges="orientation|keyboardHidden|screenSize" |
| 17 | android:label="@string/app_name" |
| 18 | android:theme="@style/FullscreenTheme" > |
| 19 | <intent-filter> |
| 20 | <action android:name="android.intent.action.MAIN" /> |
| 21 | |
| 22 | <category android:name="android.intent.category.LAUNCHER" /> |
| 23 | </intent-filter> |
| 24 | </activity> |
| 25 | </application> |
| 26 | |
| 27 | </manifest> |