diff options
author | 2020-03-31 22:27:17 +0000 | |
---|---|---|
committer | 2020-03-31 22:27:17 +0000 | |
commit | 524759aa51a70269646229dcd151129b4167f429 (patch) | |
tree | 4e9b5332a123a6a971f7e6922c5f7bbf3a197103 /tools/EditTextVariations | |
parent | f82d822b420ecfc54a4954e75b864525b1a5171d (diff) | |
parent | 7bc73dd05daef518877db6a7792022552a8510d7 (diff) | |
download | latinime-524759aa51a70269646229dcd151129b4167f429.tar.gz latinime-524759aa51a70269646229dcd151129b4167f429.tar.xz latinime-524759aa51a70269646229dcd151129b4167f429.zip |
Merge "Add an exported flag in manifest" am: 2e60c56ea9 am: 6f1b6d7a94 am: 0428fa5453 am: 7bc73dd05d
Change-Id: I546d11a65d5a69f64275d7a4ff37ba5b6a708c88
Diffstat (limited to 'tools/EditTextVariations')
-rw-r--r-- | tools/EditTextVariations/AndroidManifest.xml | 45 |
1 files changed, 19 insertions, 26 deletions
diff --git a/tools/EditTextVariations/AndroidManifest.xml b/tools/EditTextVariations/AndroidManifest.xml index 96c244b32..b5a27b9c8 100644 --- a/tools/EditTextVariations/AndroidManifest.xml +++ b/tools/EditTextVariations/AndroidManifest.xml @@ -14,34 +14,27 @@ limitations under the License. --> -<manifest - xmlns:android="http://schemas.android.com/apk/res/android" - package="com.android.inputmethod.tools.edittextvariations" - android:versionName="0.67" - android:versionCode="67" -> - <supports-screens android:resizeable="true" /> - <uses-sdk - android:targetSdkVersion="27" - android:minSdkVersion="11" /> - <application - android:icon="@drawable/ic_launcher" - android:label="@string/app_name" - android:allowBackup="false" - > - <activity - android:name=".EditTextVariations" - android:windowSoftInputMode="stateHidden|adjustPan" - android:theme="@style/defaultActivityTheme" - android:label="@string/app_name" - > +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="com.android.inputmethod.tools.edittextvariations" + android:versionName="0.67" + android:versionCode="67"> + <supports-screens android:resizeable="true"/> + <uses-sdk android:targetSdkVersion="27" + android:minSdkVersion="11"/> + <application android:icon="@drawable/ic_launcher" + android:label="@string/app_name" + android:allowBackup="false"> + <activity android:name=".EditTextVariations" + android:windowSoftInputMode="stateHidden|adjustPan" + android:theme="@style/defaultActivityTheme" + android:label="@string/app_name" + android:exported="true"> <intent-filter> - <action android:name="android.intent.action.MAIN" /> - <category android:name="android.intent.category.LAUNCHER" /> + <action android:name="android.intent.action.MAIN"/> + <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> - <receiver - android:name=".NotificationBroadcastReceiver" - android:exported="false" /> + <receiver android:name=".NotificationBroadcastReceiver" + android:exported="false"/> </application> </manifest> |