Fixed AndroidManifest to receive Bluetooth events
Set parallel downloads to 2 so the third thread can stream for playback
This commit is contained in:
parent
faf07f2887
commit
f790e29add
|
@ -86,7 +86,7 @@
|
|||
</intent-filter>
|
||||
</receiver>
|
||||
<receiver android:name=".receiver.BluetoothIntentReceiver"
|
||||
android:exported="false">
|
||||
android:exported="true">
|
||||
<intent-filter>
|
||||
<action android:name="android.bluetooth.device.action.ACL_CONNECTED"/>
|
||||
<action android:name="android.bluetooth.device.action.ACL_DISCONNECTED"/>
|
||||
|
|
|
@ -353,7 +353,7 @@ class Downloader(
|
|||
}
|
||||
|
||||
companion object {
|
||||
const val PARALLEL_DOWNLOADS = 3
|
||||
const val PARALLEL_DOWNLOADS = 2
|
||||
const val CHECK_INTERVAL = 5000L
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue