mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-05 22:25:07 +01:00
Use BuildConfig package name to forgo Context
This should adapt to the package name, despite not actually relying on the value of it to function. Intents are one of the most analyzed items for vulnerabilities and exploits.
This commit is contained in:
parent
bd9050f6c7
commit
a906c6d689
@ -31,6 +31,7 @@ import androidx.core.view.updateMargins
|
|||||||
import androidx.fragment.app.FragmentTransaction
|
import androidx.fragment.app.FragmentTransaction
|
||||||
import com.google.android.material.dialog.MaterialAlertDialogBuilder
|
import com.google.android.material.dialog.MaterialAlertDialogBuilder
|
||||||
import dagger.hilt.android.AndroidEntryPoint
|
import dagger.hilt.android.AndroidEntryPoint
|
||||||
|
import emu.skyline.BuildConfig
|
||||||
import emu.skyline.applet.swkbd.SoftwareKeyboardConfig
|
import emu.skyline.applet.swkbd.SoftwareKeyboardConfig
|
||||||
import emu.skyline.applet.swkbd.SoftwareKeyboardDialog
|
import emu.skyline.applet.swkbd.SoftwareKeyboardDialog
|
||||||
import emu.skyline.data.AppItem
|
import emu.skyline.data.AppItem
|
||||||
@ -94,8 +95,8 @@ class EmulationActivity : AppCompatActivity(), SurfaceHolder.Callback, View.OnTo
|
|||||||
private var isEmulatorPaused = false
|
private var isEmulatorPaused = false
|
||||||
|
|
||||||
private lateinit var pictureInPictureParamsBuilder : PictureInPictureParams.Builder
|
private lateinit var pictureInPictureParamsBuilder : PictureInPictureParams.Builder
|
||||||
private val pauseIntentAction = "$packageName.EMULATOR_PAUSE"
|
private val intentActionPause = "${BuildConfig.APPLICATION_ID}.ACTION_EMULATOR_PAUSE"
|
||||||
private val muteIntentAction = "$packageName.EMULATOR_MUTE"
|
private val intentActionMute = "${BuildConfig.APPLICATION_ID}.ACTION_EMULATOR_MUTE"
|
||||||
private lateinit var pictureInPictureReceiver : BroadcastReceiver
|
private lateinit var pictureInPictureReceiver : BroadcastReceiver
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
@ -283,13 +284,13 @@ class EmulationActivity : AppCompatActivity(), SurfaceHolder.Callback, View.OnTo
|
|||||||
val pendingFlags = PendingIntent.FLAG_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE
|
val pendingFlags = PendingIntent.FLAG_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE
|
||||||
|
|
||||||
val pauseIcon = Icon.createWithResource(this, R.drawable.ic_pause)
|
val pauseIcon = Icon.createWithResource(this, R.drawable.ic_pause)
|
||||||
val pausePendingIntent = PendingIntent.getBroadcast(this, R.drawable.ic_pause, Intent(pauseIntentAction), pendingFlags)
|
val pausePendingIntent = PendingIntent.getBroadcast(this, R.drawable.ic_pause, Intent(intentActionPause), pendingFlags)
|
||||||
val pauseRemoteAction = RemoteAction(pauseIcon, getString(R.string.pause), getString(R.string.pause_emulator), pausePendingIntent)
|
val pauseRemoteAction = RemoteAction(pauseIcon, getString(R.string.pause), getString(R.string.pause_emulator), pausePendingIntent)
|
||||||
pictureInPictureActions.add(pauseRemoteAction)
|
pictureInPictureActions.add(pauseRemoteAction)
|
||||||
|
|
||||||
if (!emulationSettings.isAudioOutputDisabled) {
|
if (!emulationSettings.isAudioOutputDisabled) {
|
||||||
val muteIcon = Icon.createWithResource(this, R.drawable.ic_volume_mute)
|
val muteIcon = Icon.createWithResource(this, R.drawable.ic_volume_mute)
|
||||||
val mutePendingIntent = PendingIntent.getBroadcast(this, R.drawable.ic_volume_mute, Intent(muteIntentAction), pendingFlags)
|
val mutePendingIntent = PendingIntent.getBroadcast(this, R.drawable.ic_volume_mute, Intent(intentActionMute), pendingFlags)
|
||||||
val muteRemoteAction = RemoteAction(muteIcon, getString(R.string.mute), getString(R.string.disable_audio_output), mutePendingIntent)
|
val muteRemoteAction = RemoteAction(muteIcon, getString(R.string.mute), getString(R.string.disable_audio_output), mutePendingIntent)
|
||||||
pictureInPictureActions.add(muteRemoteAction)
|
pictureInPictureActions.add(muteRemoteAction)
|
||||||
}
|
}
|
||||||
@ -418,17 +419,17 @@ class EmulationActivity : AppCompatActivity(), SurfaceHolder.Callback, View.OnTo
|
|||||||
if (isInPictureInPictureMode) {
|
if (isInPictureInPictureMode) {
|
||||||
pictureInPictureReceiver = object : BroadcastReceiver() {
|
pictureInPictureReceiver = object : BroadcastReceiver() {
|
||||||
override fun onReceive(context : Context?, intent : Intent) {
|
override fun onReceive(context : Context?, intent : Intent) {
|
||||||
if (intent.action == pauseIntentAction)
|
if (intent.action == intentActionPause)
|
||||||
pauseEmulator()
|
pauseEmulator()
|
||||||
else if (intent.action == muteIntentAction)
|
else if (intent.action == intentActionMute)
|
||||||
changeAudioStatus(false)
|
changeAudioStatus(false)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
IntentFilter().apply {
|
IntentFilter().apply {
|
||||||
addAction(pauseIntentAction)
|
addAction(intentActionPause)
|
||||||
if (!emulationSettings.isAudioOutputDisabled)
|
if (!emulationSettings.isAudioOutputDisabled)
|
||||||
addAction(muteIntentAction)
|
addAction(intentActionMute)
|
||||||
}.also {
|
}.also {
|
||||||
registerReceiver(pictureInPictureReceiver, it)
|
registerReceiver(pictureInPictureReceiver, it)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user