Android How can app run as System App?

前端 未结 3 544
忘了有多久
忘了有多久 2020-12-20 03:17

What is required for an app to run as a System app? What needs to be requested from the device vendor? Does the process change if the device is rooted and the app is to ca

相关标签:
3条回答
  • 2020-12-20 03:52
    java -jar signapk.jar platform.x509.pem platform.pk8 bin/TestApp-unsigned.apk bin/TestApp.apk
    
    0 讨论(0)
  • 2020-12-20 04:06

    System permissions such as access to PowerManager need the application to be signed with the platform key besides giving android.permission.POWERMANAGER or a similar permission in the manifest.

    As far as signing with the platform key is concerned, we can do that by building the entire firmware with the application included.

    0 讨论(0)
  • 2020-12-20 04:14

    You have to sign your application with system key , see this thread How to compile Android Application with system permissions

    0 讨论(0)
提交回复
热议问题