AndroidManifest.xml 4.95 KB
Newer Older
konghaorui committed
1 2
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 4
    xmlns:tools="http://schemas.android.com/tools"
    package="com.ydl.component">
konghaorui committed
5

ydl committed
6 7
    <permission android:name="android.permission.WRITE_SETTINGS" />

konghaorui committed
8 9 10 11 12 13 14
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
    <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
    <uses-permission android:name="android.permission.READ_PHONE_STATE" />
konghaorui committed
15 16

    <application
17
        android:name=".base.ComponentTestApp"
18 19 20 21 22 23 24 25
        android:allowBackup="false"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:networkSecurityConfig="@xml/network_config"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/platform_CommonTheme"
        tools:ignore="GoogleAppIndexingWarning"
26
        tools:replace="android:allowBackup, android:icon, android:label,android:name">
27 28 29
        <activity
            android:name=".music.FragmentContainerActivity"
            android:theme="@style/platform_NoTitleTheme" />
konghaorui committed
30 31 32
        <!-- <activity android:name="com.yidianling.user.ui.login.RegisterAndLoginActivity" -->
        <!-- <activity android:name=".MainActivity"/> -->
        <activity
33 34 35
            android:name=".MainActivity"
            android:launchMode="singleTask"
            android:theme="@style/platform_NoTitleTheme">
konghaorui committed
36
            <intent-filter>
konghaorui committed
37 38
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
konghaorui committed
39
            </intent-filter>
40 41 42

            <intent-filter>
                <action android:name="com.ydl.media.ACTION_MUSIC_CLICK" />
43
                <category android:name="android.intent.category.DEFAULT" />
44
            </intent-filter>
刘鹏 committed
45 46 47 48
            <intent-filter>
                <action android:name="android.intent.action.VIEW"/>
                <category android:name="android.intent.category.DEFAULT"/>
                <category android:name="android.intent.category.BROWSABLE"/>
49
                <data android:scheme="jz0d0s"/>
刘鹏 committed
50
            </intent-filter>
konghaorui committed
51 52 53
        </activity>

        <meta-data
54 55
            android:name="com.ydl.component.base.DemoGlobalConfig"
            android:value="ModuleConfig" />
刘鹏 committed
56 57
        <meta-data
            android:name="com.openinstall.APP_KEY"
58
            android:value="jz0d0s"/>
59
        <activity
60 61 62
            android:name="com.tencent.tauth.AuthActivity"
            android:launchMode="singleTask"
            android:noHistory="true">
63 64 65 66 67 68 69 70 71
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />

                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />

                <data android:scheme="tencent1105070461" />
            </intent-filter>
        </activity>
徐健 committed
72

73
        <activity android:name=".TestAppActivity" />
徐健 committed
74 75 76
        <activity
            android:name=".home.HomeActivity"
            android:launchMode="singleTask"
77
            android:noHistory="true"></activity>
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114


        <activity
            android:name=".rtc.MDTLoginActivity"
            android:launchMode="singleTask"
            android:theme="@style/Theme.AppCompat.NoActionBar" />

        <activity
            android:name=".rtc.MDTMainActivity"
            android:screenOrientation="portrait">
            <intent-filter>
                <action android:name="com.tencent.liteav.action.portal" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <data
                    android:host="com.tencent.qcloud"
                    android:path="/detail"
                    android:scheme="pushscheme" />
            </intent-filter>
            <intent-filter>
                <action android:name="com.tencent.trtc.tuicalling" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>

        <activity
            android:name=".rtc.ProfileActivity"
            android:screenOrientation="portrait"
            android:theme="@style/Theme.AppCompat.NoActionBar" />

        <activity
            android:name=".rtc.TUICallingEntranceActivity"
            android:screenOrientation="portrait"
            android:theme="@style/Theme.AppCompat.NoActionBar" />
115 116
        <activity android:name=".rtc.VideoCallingEnterActivity" />

konghaorui committed
117 118 119
    </application>

</manifest>