Can we create an apk without an user interface in

2019-06-13 19:49发布

I want to create an apk, without an user interface in android. And I need to start a Service as soon as the Applicaton gets installed on the Device. Is there any possible way to create an apk without UI.

Thanks in advance.

2条回答
Melony?
2楼-- · 2019-06-13 20:23

And I need to start a Service as soon as the Applicaton gets installed on the Device.

Fortunately, that is not possible for an app installed through normal channels (e.g., the Play Store), for security reasons, since Android 3.1. Nothing of your app will run until something on the device uses an explicit Intent to start up one of your components, and that most certainly does not occur when your app is installed.

You are welcome to build your hardware, or your own custom ROM, that has your app pre-installed. In that case, you can arrange to be able to run right away.

查看更多
Viruses.
3楼-- · 2019-06-13 20:25

yes, you have juste to create a Service or a BrodcastReceiver which do something you want

查看更多
登录 后发表回答