直播模块重构及demo更新
This commit is contained in:
@@ -19,15 +19,19 @@
|
||||
<application
|
||||
android:allowBackup="true"
|
||||
android:label="SellyCloudRTC Demo"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:roundIcon="@mipmap/ic_launcher_round"
|
||||
android:theme="@style/Theme.AppCompat.Light.DarkActionBar"
|
||||
android:usesCleartextTraffic="true"
|
||||
android:networkSecurityConfig="@xml/network_security_config"
|
||||
android:requestLegacyExternalStorage="true">
|
||||
<activity
|
||||
android:name=".FeatureHubActivity"
|
||||
android:name=".login.LoginActivity"
|
||||
android:exported="true"
|
||||
android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize|screenLayout|uiMode"
|
||||
android:screenOrientation="fullSensor">
|
||||
android:theme="@style/Theme.AVDemo.NoActionBar"
|
||||
android:screenOrientation="fullSensor"
|
||||
android:windowSoftInputMode="adjustResize">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
@@ -35,10 +39,26 @@
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".live.MainActivity"
|
||||
android:name=".FeatureHubActivity"
|
||||
android:exported="true"
|
||||
android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize|screenLayout|uiMode"
|
||||
android:theme="@style/Theme.AVDemo.NoActionBar"
|
||||
android:screenOrientation="fullSensor" />
|
||||
|
||||
<activity
|
||||
android:name=".live.LivePushActivity"
|
||||
android:exported="false"
|
||||
android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize|screenLayout|uiMode"
|
||||
android:screenOrientation="fullSensor"
|
||||
android:theme="@style/Theme.AVDemo.NoActionBar"
|
||||
android:parentActivityName=".FeatureHubActivity" />
|
||||
|
||||
<activity
|
||||
android:name=".live.LivePlayActivity"
|
||||
android:exported="false"
|
||||
android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize|screenLayout|uiMode"
|
||||
android:screenOrientation="fullSensor"
|
||||
android:theme="@style/Theme.AVDemo.NoActionBar"
|
||||
android:parentActivityName=".FeatureHubActivity" />
|
||||
|
||||
<activity
|
||||
@@ -48,11 +68,6 @@
|
||||
android:screenOrientation="portrait"
|
||||
android:parentActivityName=".FeatureHubActivity" />
|
||||
|
||||
<!-- 新增:多路播放页面 -->
|
||||
<activity
|
||||
android:name=".live.MultiPlayActivity"
|
||||
android:exported="false" />
|
||||
|
||||
<service
|
||||
android:name=".interactive.InteractiveForegroundService"
|
||||
android:exported="false"
|
||||
|
||||
Reference in New Issue
Block a user