Skip to content

Commit

Permalink
[optimize] Format code.
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Jul 26, 2024
1 parent 04d1158 commit 8179d47
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions mod_login/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="https://schemas.android.com/apk/res/android"
package="com.sum.login">
package="com.sum.login">

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET" />
<!--检查网络权限-->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application android:allowBackup="false">
<activity
android:name=".login.LoginActivity"
android:launchMode="singleTop"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan" />
android:name=".login.LoginActivity"
android:launchMode="singleTop"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan" />
<activity
android:name=".register.RegisterActivity"
android:launchMode="singleTop"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan" />
android:name=".register.RegisterActivity"
android:launchMode="singleTop"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan" />
<activity
android:name=".policy.PrivacyPolicyActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan" />
android:name=".policy.PrivacyPolicyActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan" />
</application>
</manifest>

0 comments on commit 8179d47

Please sign in to comment.