Is there a way to keep meta-data in the Android manifest private to the package?

前端 未结 2 1113
长发绾君心
长发绾君心 2020-12-20 19:29

I want to use meta-data in the Android manifest to customize the behavior of a service.



        
2条回答
  •  独厮守ぢ
    2020-12-20 20:06

    Are these meta-data attributes visible to other installed packages on the phone via the PackageManager even if the service is not exported?

    Yes. Everything in the manifest, and everything in your resources and assets, is accessible to all applications on the device.

提交回复
热议问题