ENTREPRENEURSHIP

ENTREPRENEURIAL PLANNING

MARKETING PLAN DEVELOPMENT

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
Services cannot be exported
A
TRUE
B
FALSE
C
Either A or B
D
None of the above
Explanation: 

Detailed explanation-1: -Set android:exported="false” to limit access to the provider to your applications. Only applications that have the same user ID (UID) as the provider, or applications that have been temporarily granted access to the provider through the android:grantUriPermissions element, have access to it.

Detailed explanation-2: -android:exported Whether or not components of other applications can invoke the service or interact with it-“true” if they can, and “false” if not. When the value is “false", only components of the same application or applications with the same user ID can start the service or bind to it.

Detailed explanation-3: -What does this warning mean? It means that other (arbitrary) applications the user has on his phone can bind to your Service and call whatever method they please that is exposed through your AIDL interface.

There is 1 question to complete.