Exported service does not require permission: what does it mean?

前端 未结 3 649
一向
一向 2020-12-12 14:02

I created a service that is bound by other applications through AIDL, and I add it to the manifest as follows:


           


        
3条回答
  •  感情败类
    2020-12-12 14:37

    I had the same issue when I updated SDK to version 20. I removed it adding android:exported property android:exported="false" like so:

    
        
            
        
    
    

    See this doc

提交回复
热议问题