StreamingTranscoder sample app.

This commit is contained in:
Nicholas Tinsley
2024-01-12 18:18:01 -05:00
committed by Greyson Parrelli
parent 750fd4efe1
commit c7609f9a2a
46 changed files with 880 additions and 254 deletions

View File

@@ -3,8 +3,9 @@
~ SPDX-License-Identifier: AGPL-3.0-only
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
@@ -23,6 +24,7 @@
</intent-filter>
</activity>
<activity
android:name=".transcode.TranscodeTestActivity"
android:exported="false"
android:theme="@style/Theme.Signal" />
@@ -30,6 +32,10 @@
android:name=".playback.PlaybackTestActivity"
android:exported="false"
android:theme="@style/Theme.Signal" />
<service
android:name="androidx.work.impl.foreground.SystemForegroundService"
android:foregroundServiceType="dataSync"
tools:node="merge" />
</application>
</manifest>