diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2020-05-10 19:21:39 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-10 19:21:39 +0530 |
commit | 041cf00510a75042223d1857660fc7f1dff958ef (patch) | |
tree | 1b56e67e2b71afe23ac51b680b62ad778272f162 /app/src/main/AndroidManifest.xml | |
parent | 94dc92f8d70870b57a7f8c4fe8adef152c1211ce (diff) |
Treewide codestyle cleanup (#765)
- Updated gitignore and checked in the IDE's codestyle config
- Removed spotless as the underlying ktlint backend has failed to resolve the super frustrating import order bug[1] in nearly a year
- Reformat the entire codebase based on the previously committed code style configuration.
1: https://github.com/pinterest/ktlint/issues/527
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 58 |
1 files changed, 33 insertions, 25 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index c89d2599..7d53fd7a 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -21,9 +21,9 @@ android:allowBackup="false" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" + android:requestLegacyExternalStorage="true" android:supportsRtl="true" android:theme="@style/AppTheme" - android:requestLegacyExternalStorage="true" tools:ignore="GoogleAppIndexingWarning"> <activity @@ -31,30 +31,35 @@ android:configChanges="orientation|screenSize" android:label="@string/app_name" /> - <activity android:name=".LaunchActivity" - android:label="@string/app_name" - android:configChanges="orientation|screenSize"> + <activity + android:name=".LaunchActivity" + android:configChanges="orientation|screenSize" + android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> - <activity android:name=".git.GitOperationActivity" + <activity + android:name=".git.GitOperationActivity" android:theme="@style/NoBackgroundTheme" /> - <activity android:name=".git.GitServerConfigActivity" - android:windowSoftInputMode="adjustResize" - android:label="@string/title_activity_git_clone" /> + <activity + android:name=".git.GitServerConfigActivity" + android:label="@string/title_activity_git_clone" + android:windowSoftInputMode="adjustResize" /> - <activity android:name=".git.GitConfigActivity" - android:windowSoftInputMode="adjustResize" - android:label="@string/title_activity_git_config" /> + <activity + android:name=".git.GitConfigActivity" + android:label="@string/title_activity_git_config" + android:windowSoftInputMode="adjustResize" /> <activity android:name=".UserPreference" - android:parentActivityName=".PasswordStore" - android:label="@string/action_settings" /> + android:label="@string/action_settings" + android:parentActivityName=".PasswordStore" /> + <service android:name=".autofill.AutofillService" android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"> @@ -66,14 +71,17 @@ android:resource="@xml/autofill_config" /> </service> <service - android:name=".ClipboardService" - android:process=":clipboard_service_process" /> - <service android:name=".autofill.oreo.OreoAutofillService" + android:name=".ClipboardService" + android:process=":clipboard_service_process" /> + <service + android:name=".autofill.oreo.OreoAutofillService" android:permission="android.permission.BIND_AUTOFILL_SERVICE"> <intent-filter> <action android:name="android.service.autofill.AutofillService" /> </intent-filter> - <meta-data android:name="android.autofill" android:resource="@xml/oreo_autofill_service" /> + <meta-data + android:name="android.autofill" + android:resource="@xml/oreo_autofill_service" /> </service> <activity @@ -87,13 +95,13 @@ <activity android:name=".crypto.PgpActivity" + android:configChanges="orientation|screenSize" android:parentActivityName=".PasswordStore" - android:windowSoftInputMode="adjustResize" - android:configChanges="orientation|screenSize" /> + android:windowSoftInputMode="adjustResize" /> <activity android:name=".SelectFolderActivity" /> <activity - android:label="@string/pref_ssh_keygen_title" android:name=".sshkeygen.SshKeyGenActivity" + android:label="@string/pref_ssh_keygen_title" android:windowSoftInputMode="adjustResize" /> <activity android:name=".autofill.oreo.ui.AutofillDecryptActivity" @@ -101,16 +109,16 @@ <activity android:name=".autofill.oreo.ui.AutofillFilterView" android:configChanges="orientation|keyboardHidden" - android:windowSoftInputMode="adjustNothing" - android:theme="@style/DialogLikeTheme" /> + android:theme="@style/DialogLikeTheme" + android:windowSoftInputMode="adjustNothing" /> <activity android:name=".autofill.oreo.ui.AutofillSaveActivity" - android:theme="@style/NoBackgroundTheme"/> + android:theme="@style/NoBackgroundTheme" /> <activity android:name=".autofill.oreo.ui.AutofillPublisherChangedActivity" android:configChanges="orientation|keyboardHidden" - android:windowSoftInputMode="adjustNothing" - android:theme="@style/DialogLikeTheme" /> + android:theme="@style/DialogLikeTheme" + android:windowSoftInputMode="adjustNothing" /> </application> </manifest> |