blob: 55b774452098fcba2e1ba137b407c9b95b9aa665 [file] [log] [blame]
Yohei Yukawaf97da472018-05-22 10:31:28 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2010 The Android Open Source Project
3
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-->
16
Ashwini Oruganti7c1b5492020-03-23 16:23:26 -070017<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18 package="com.android.inputmethod.tools.edittextvariations"
19 android:versionName="0.67"
20 android:versionCode="67">
21 <supports-screens android:resizeable="true"/>
22 <uses-sdk android:targetSdkVersion="27"
23 android:minSdkVersion="11"/>
Steve Elliotta5ed00d2021-12-03 16:36:34 -050024 <uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
Ashwini Oruganti7c1b5492020-03-23 16:23:26 -070025 <application android:icon="@drawable/ic_launcher"
26 android:label="@string/app_name"
27 android:allowBackup="false">
28 <activity android:name=".EditTextVariations"
29 android:windowSoftInputMode="stateHidden|adjustPan"
30 android:theme="@style/defaultActivityTheme"
31 android:label="@string/app_name"
32 android:exported="true">
Yohei Yukawaf97da472018-05-22 10:31:28 -070033 <intent-filter>
Ashwini Oruganti7c1b5492020-03-23 16:23:26 -070034 <action android:name="android.intent.action.MAIN"/>
35 <category android:name="android.intent.category.LAUNCHER"/>
Yohei Yukawaf97da472018-05-22 10:31:28 -070036 </intent-filter>
37 </activity>
Ming-Shin Lued13b192021-06-07 00:24:41 +080038 <activity android:name=".EditorActivity"
39 android:windowSoftInputMode="stateHidden|adjustPan"
40 android:theme="@style/defaultActivityTheme"
41 android:label="@string/app_name"/>
Ashwini Oruganti7c1b5492020-03-23 16:23:26 -070042 <receiver android:name=".NotificationBroadcastReceiver"
43 android:exported="false"/>
Yohei Yukawaf97da472018-05-22 10:31:28 -070044 </application>
45</manifest>