Skip to content

Commit

Permalink
fix: indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
amitojsingh committed Apr 26, 2022
1 parent 300b9ae commit d5c41e0
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 26 deletions.
36 changes: 12 additions & 24 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,30 +1,18 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.WahegurooNetwork.SundarGutka">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.WahegurooNetwork.SundarGutka">

<uses-permission android:name="android.permission.INTERNET" />

<application
android:name=".MainApplication"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:allowBackup="false"
android:theme="@style/AppTheme">
<activity
android:name=".SplashActivity"
android:theme="@style/SplashTheme"
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=".MainActivity"
android:label="@string/app_name"
<application android:name=".MainApplication" android:label="@string/app_name" android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round" android:allowBackup="false" android:theme="@style/AppTheme">
<activity android:name=".SplashActivity" android:theme="@style/SplashTheme" 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=".MainActivity" android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
android:launchMode="singleTask"
android:windowSoftInputMode="adjustResize">
android:launchMode="singleTask" android:windowSoftInputMode="adjustResize">
</activity>
</application>
</manifest>
</manifest>
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ protected void onCreate(Bundle savedInstanceState) {
startActivity(intent);
finish();
}
}
}
2 changes: 1 addition & 1 deletion android/app/src/main/res/drawable/backgroud_splash.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
android:drawable="@mipmap/ic_launcher_foreground"
android:gravity="center" />

</layer-list>
</layer-list>

0 comments on commit d5c41e0

Please sign in to comment.