Код: Выделить всё
val filter = IntentFilter()
filter.addAction("android.intent.action.MAIN")
val appIntent = Intent()
appIntent.setComponent(
ComponentName(
pkgName,
pkgName + ".CmdReceiver"
)
)
appIntent.flags = Intent.FLAG_RECEIVER_FOREGROUND
appIntent.flags = Intent.FLAG_INCLUDE_STOPPED_PACKAGES
sendBroadcast(appIntent)
Подробнее здесь: https://stackoverflow.com/questions/797 ... nother-app
Мобильная версия