start baresip automatically when device starts
This commit is contained in:
21
app/src/main/kotlin/com/tutpro/baresip/RunOnStartup.kt
Normal file
21
app/src/main/kotlin/com/tutpro/baresip/RunOnStartup.kt
Normal file
@ -0,0 +1,21 @@
|
||||
package com.tutpro.baresip
|
||||
|
||||
import android.content.BroadcastReceiver
|
||||
import android.content.Context
|
||||
import android.content.Intent
|
||||
import android.os.Bundle
|
||||
|
||||
class RunOnStartup : BroadcastReceiver() {
|
||||
|
||||
override fun onReceive(context: Context, intent: Intent) {
|
||||
if (intent.action == Intent.ACTION_BOOT_COMPLETED) {
|
||||
val i = Intent(context, MainActivity::class.java)
|
||||
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
|
||||
val b = Bundle()
|
||||
b.putBoolean("onstartup", true)
|
||||
i.putExtras(b)
|
||||
context.startActivity(i)
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user