Implement LuiActivity for settings integration
For full integration, we would have to implement EuiccService, but that would mean refactoring everything every time with Android updates and giving up the ability to manage non-embedded eUICC cards. For now, I think having our own UI is the best plan of action. EuiccService is only useful with carrier apps anyway and those likely require Google services.master
parent
5756c48d3d
commit
d820691357
@ -0,0 +1,12 @@
|
||||
package im.angry.openeuicc.ui
|
||||
|
||||
import android.content.Intent
|
||||
import androidx.appcompat.app.AppCompatActivity
|
||||
|
||||
class LuiActivity : AppCompatActivity() {
|
||||
override fun onStart() {
|
||||
super.onStart()
|
||||
startActivity(Intent(this, MainActivity::class.java))
|
||||
finish()
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue