all: remove prettier from Spotless and reformat XML

This commit is contained in:
Harsh Shandilya 2021-09-23 20:07:14 +05:30
parent 8e243359ab
commit ffcb270013
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
12 changed files with 41 additions and 67 deletions

View file

@ -1,22 +1,22 @@
<?xml version="1.0" encoding="utf-8" ?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="dev.msfjarvis.claw.android"
>
<uses-permission android:name="android.permission.INTERNET" />
<application
android:label="Claw"
android:supportsRtl="true"
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="dev.msfjarvis.claw.android">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:name=".ClawApplication"
android:icon="@mipmap/ic_launcher"
android:label="Claw"
android:roundIcon="@mipmap/ic_launcher"
android:name=".ClawApplication"
android:theme="@style/Theme.Claw"
>
<activity android:name=".MainActivity" android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
android:supportsRtl="true"
android:theme="@style/Theme.Claw">
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>