blob: e108aff20abd32d255b8ab641f0990fabe8fede5 [file] [log] [blame]
Alexander Lucas0b3758e2014-02-06 15:38:51 -08001<?xml version="1.0" encoding="UTF-8"?><!--
2 Copyright 2014 The Android Open Source Project
Dirk Dougherty4b737b62013-10-29 20:56:17 -07003
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
Alexander Lucas0b3758e2014-02-06 15:38:51 -080016
17
Dirk Dougherty4b737b62013-10-29 20:56:17 -070018<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Alexander Lucas0b3758e2014-02-06 15:38:51 -080019 package="com.example.android.renderscriptintrinsic"
Dirk Dougherty4b737b62013-10-29 20:56:17 -070020 android:versionCode="1"
21 android:versionName="1.0">
22
Trevor Johns527a4f32014-11-12 11:39:30 -080023 <!-- Min/target SDK versions (<uses-sdk>) managed by build.gradle -->
Dirk Dougherty4b737b62013-10-29 20:56:17 -070024
Alexander Lucas0b3758e2014-02-06 15:38:51 -080025 <application
26 android:allowBackup="true"
27 android:label="RenderScriptIntrinsic"
Dirk Dougherty4b737b62013-10-29 20:56:17 -070028 android:icon="@drawable/ic_launcher"
29 android:theme="@style/AppTheme">
30
Alexander Lucas0b3758e2014-02-06 15:38:51 -080031 <activity
32 android:name=".MainActivity"
33 android:label="RenderScriptIntrinsic"
34 android:theme="@style/FullscreenTheme">
Dirk Dougherty4b737b62013-10-29 20:56:17 -070035 <intent-filter>
36 <action android:name="android.intent.action.MAIN" />
37 <category android:name="android.intent.category.LAUNCHER" />
38 </intent-filter>
39 </activity>
40 </application>
41
42
43</manifest>