blob: 6651d9a930f35ff790d6a62affcd34c34899e634 [file] [log] [blame]
Dan Sandler27a9fcc2016-06-22 00:05:11 -04001<?xml version="1.0" encoding="utf-8"?>
2<!--
Dan Sandler45f17c52018-05-02 20:01:38 -04003 Copyright (C) 2018 The Android Open Source Project
Dan Sandler27a9fcc2016-06-22 00:05:11 -04004
Dan Sandler45f17c52018-05-02 20:01:38 -04005 Licensed under the Apache License, Version 2.0 (the "License");
Dan Sandler27a9fcc2016-06-22 00:05:11 -04006 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Dan Sandler45f17c52018-05-02 20:01:38 -040018 package="com.android.egg"
19 android:versionCode="1"
20 android:versionName="1.0">
Dan Sandler27a9fcc2016-06-22 00:05:11 -040021
Dan Sandler45f17c52018-05-02 20:01:38 -040022 <uses-sdk android:minSdkVersion="28" />
Dan Sandler27a9fcc2016-06-22 00:05:11 -040023
Dan Sandler45f17c52018-05-02 20:01:38 -040024 <application
25 android:icon="@drawable/icon"
26 android:label="@string/app_name">
Dan Sandler27a9fcc2016-06-22 00:05:11 -040027
Dan Sandler45f17c52018-05-02 20:01:38 -040028 <activity
29 android:name=".paint.PaintActivity"
30 android:configChanges="orientation|keyboardHidden|screenSize|uiMode"
31 android:label="@string/app_name"
32 android:theme="@style/AppTheme">
Dan Sandler49ddb0d2017-06-08 23:52:45 -040033 <intent-filter>
Dan Sandler45f17c52018-05-02 20:01:38 -040034 <action android:name="android.intent.action.MAIN" />
Dan Sandler49ddb0d2017-06-08 23:52:45 -040035 <category android:name="android.intent.category.DEFAULT" />
Dan Sandler45f17c52018-05-02 20:01:38 -040036 <!--<category android:name="android.intent.category.LAUNCHER" />-->
Dan Sandler49ddb0d2017-06-08 23:52:45 -040037 <category android:name="com.android.internal.category.PLATLOGO" />
38 </intent-filter>
39 </activity>
Dan Sandler27a9fcc2016-06-22 00:05:11 -040040 </application>
Dan Sandler45f17c52018-05-02 20:01:38 -040041
42</manifest>