Android Remote Service External access control

Source: Internet
Author: User

<Service>

You can restrict external access by using the following parameters

Android:exported= "false" //Do not allow other processes to access

android:process= ": Remote" //Declare service standalone run process name

If you need to support external access, but restrict access to only certain processes

<permission
Android:name= "Com.example.REQUEST_FINGERPRINT"
Android:protectionlevel= "signature"/> //Declaring a custom permission

<service

Android:exported= "true" //Allow other processes to access

android:process= ": Remote" //Declare service standalone run process name

android:permission= "Com.example.REQUEST_FINGERPRINT" > //declaring permission for external access to be registered

Then reference the permissions in the app that requires remote access to the service

<uses-permission android:name= "Com.example.REQUEST_FINGERPRINT"/>

In SDK API 21, if you declare an externally accessible service without declaring the required permissions, you will see warning in the IDE:exported service does not require permission

If the app accesses a service that requires permissions, the app crashes and prompts for error: Notallowed to the bind to service Intent

Android Remote Service External access control

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.