mirror of
https://gitlab.futo.org/videostreaming/grayjay.git
synced 2025-08-30 06:07:00 +00:00
Added QRCaptureActivity and AudioNoisyReceiver to manifest.
This commit is contained in:
parent
9c50f15be7
commit
1349358d7c
4 changed files with 9 additions and 11 deletions
|
@ -38,6 +38,7 @@
|
|||
android:enabled="true" />
|
||||
|
||||
<receiver android:name=".receivers.MediaControlReceiver" />
|
||||
<receiver android:name=".receivers.AudioNoisyReceiver" />
|
||||
|
||||
<activity
|
||||
android:name=".activities.MainActivity"
|
||||
|
@ -182,9 +183,8 @@
|
|||
android:screenOrientation="portrait"
|
||||
android:theme="@style/Theme.FutoVideo.NoActionBar" />
|
||||
|
||||
|
||||
<activity
|
||||
android:name=".activities.AddSourceOptionsActivity$QRCaptureActivity"
|
||||
android:name=".activities.QRCaptureActivity"
|
||||
android:screenOrientation="portrait"
|
||||
android:theme="@style/Theme.FutoVideo.NoActionBar" />
|
||||
</application>
|
||||
|
|
|
@ -72,9 +72,4 @@ class AddSourceOptionsActivity : AppCompatActivity() {
|
|||
UIDialogs.toast(this, getString(R.string.not_implemented_yet));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
class QRCaptureActivity: CaptureActivity() {
|
||||
|
||||
}
|
||||
}
|
|
@ -131,8 +131,4 @@ class PolycentricImportProfileActivity : AppCompatActivity() {
|
|||
companion object {
|
||||
private const val TAG = "PolycentricImportProfileActivity";
|
||||
}
|
||||
|
||||
class QRCaptureActivity: CaptureActivity() {
|
||||
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
package com.futo.platformplayer.activities
|
||||
|
||||
import com.journeyapps.barcodescanner.CaptureActivity
|
||||
|
||||
class QRCaptureActivity : CaptureActivity() {
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue