AndroidManifest.xml 3.92 KB
Newer Older
1
<?xml version="1.0" encoding="utf-8"?>
konghaorui committed
2
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 4 5 6 7 8 9 10
          package="com.yidianling.user">

    <application>
        <activity
                android:name=".ui.LoginActivity"
                android:screenOrientation="portrait" />
        <activity
                android:name=".ui.CountryListActivity"
11
                android:theme="@style/platform_NoTitleTheme"
12 13 14
                android:screenOrientation="portrait" />
        <activity
                android:name=".ui.InputPhoneActivity"
15
                android:theme="@style/platform_NoTitleTheme"
16 17 18 19
                android:screenOrientation="portrait" />
        <activity
                android:name=".ui.SmsLoginActivity"
                android:label="验证码"
20
                android:theme="@style/platform_NoTitleTheme"
21 22 23
                android:screenOrientation="portrait" />
        <activity
                android:name=".ui.GetIdentifyingCodeActivity"
24
                android:theme="@style/platform_NoTitleTheme"
25 26 27
                android:screenOrientation="portrait" />
        <activity
                android:name=".ui.FillInfoActivity"
28
                android:theme="@style/platform_NoTitleTheme"
29 30 31
                android:screenOrientation="portrait" />
        <activity
                android:name=".safePrivate.CheckPasswordActivity"
32
                android:theme="@style/platform_NoTitleTheme"
33 34 35
                android:screenOrientation="portrait" />
        <activity
                android:name=".safePrivate.FingerPrintCheckActivity"
36
                android:theme="@style/platform_NoTitleTheme"
37 38 39
                android:screenOrientation="portrait" />
        <activity
                android:name=".safePrivate.HandUnlockCheckActivity"
40
                android:theme="@style/platform_NoTitleTheme"
41 42 43
                android:screenOrientation="portrait" />
        <activity
                android:name=".safePrivate.PrivacyActivity"
44
                android:theme="@style/platform_NoTitleTheme"
45 46 47
                android:screenOrientation="portrait" />
        <activity
                android:name=".safePrivate.SetFingerPrintActivity"
48
                android:theme="@style/platform_NoTitleTheme"
49 50 51
                android:screenOrientation="portrait" />
        <activity
                android:name=".safePrivate.SetHandUnLockActivity"
52
                android:theme="@style/platform_NoTitleTheme"
53 54 55 56 57 58 59 60 61 62 63 64 65
                android:screenOrientation="portrait" />

        <activity
                android:name=".ui.login.RegisterAndLoginActivity"
                android:screenOrientation="portrait" />
        <activity
                android:name=".ui.login.VerificationCodeActivity"
                android:screenOrientation="portrait" />
        <activity
                android:name=".ui.login.InputPassWordActivity"
                android:screenOrientation="portrait" />
        <activity
                android:name=".ui.login.H5Activity"
66
                android:theme="@style/platform_NoTitleTheme"
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
                android:screenOrientation="portrait" />
        <activity
                android:name=".ui.AliAuthDemoActivity"
                android:screenOrientation="portrait" />
        <activity
                android:name="com.mobile.auth.gatewayauth.LoginAuthActivity"
                android:configChanges="orientation|keyboardHidden|screenSize"
                android:exported="false"
                android:launchMode="singleTask"
                android:screenOrientation="portrait" />
        <activity
                android:name="com.cmic.sso.sdk.activity.LoginAuthActivity"
                android:configChanges="orientation|keyboardHidden|screenSize"
                android:launchMode="singleTask"
                android:screenOrientation="portrait" />
        <activity
                android:name=".wxapi.WXEntryActivity"
                android:exported="true"
                android:launchMode="singleTop" />

    </application>

</manifest>