Yohei Yukawa | f97da47 | 2018-05-22 10:31:28 -0700 | [diff] [blame] | 1 | <?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 Oruganti | 7c1b549 | 2020-03-23 16:23:26 -0700 | [diff] [blame] | 17 | <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"> |
Wilson Wu | 75f77d6 | 2022-01-13 17:32:41 +0800 | [diff] [blame] | 21 | <uses-permission android:name="android.permission.POST_NOTIFICATIONS" /> |
Ming-Shin Lu | f134ea3 | 2022-04-15 01:42:35 +0800 | [diff] [blame] | 22 | <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> |
Ashwini Oruganti | 7c1b549 | 2020-03-23 16:23:26 -0700 | [diff] [blame] | 23 | <supports-screens android:resizeable="true"/> |
| 24 | <uses-sdk android:targetSdkVersion="27" |
| 25 | android:minSdkVersion="11"/> |
Steve Elliott | a5ed00d | 2021-12-03 16:36:34 -0500 | [diff] [blame] | 26 | <uses-permission android:name="android.permission.POST_NOTIFICATIONS"/> |
Ashwini Oruganti | 7c1b549 | 2020-03-23 16:23:26 -0700 | [diff] [blame] | 27 | <application android:icon="@drawable/ic_launcher" |
| 28 | android:label="@string/app_name" |
| 29 | android:allowBackup="false"> |
| 30 | <activity android:name=".EditTextVariations" |
| 31 | android:windowSoftInputMode="stateHidden|adjustPan" |
| 32 | android:theme="@style/defaultActivityTheme" |
| 33 | android:label="@string/app_name" |
| 34 | android:exported="true"> |
Yohei Yukawa | f97da47 | 2018-05-22 10:31:28 -0700 | [diff] [blame] | 35 | <intent-filter> |
Ashwini Oruganti | 7c1b549 | 2020-03-23 16:23:26 -0700 | [diff] [blame] | 36 | <action android:name="android.intent.action.MAIN"/> |
| 37 | <category android:name="android.intent.category.LAUNCHER"/> |
Yohei Yukawa | f97da47 | 2018-05-22 10:31:28 -0700 | [diff] [blame] | 38 | </intent-filter> |
| 39 | </activity> |
Ming-Shin Lu | ed13b19 | 2021-06-07 00:24:41 +0800 | [diff] [blame] | 40 | <activity android:name=".EditorActivity" |
| 41 | android:windowSoftInputMode="stateHidden|adjustPan" |
| 42 | android:theme="@style/defaultActivityTheme" |
| 43 | android:label="@string/app_name"/> |
Ashwini Oruganti | 7c1b549 | 2020-03-23 16:23:26 -0700 | [diff] [blame] | 44 | <receiver android:name=".NotificationBroadcastReceiver" |
| 45 | android:exported="false"/> |
Yohei Yukawa | f97da47 | 2018-05-22 10:31:28 -0700 | [diff] [blame] | 46 | </application> |
| 47 | </manifest> |