Browse Source
fix(android): Fix install error on application compiled against Android S - Targeting S+ (version 10000 and above) requires that an explicit value for android:exported be defined when intent filters are present
j8
Mircea Sotan
3 years ago
No account linked to committer's email address
|
@@ -40,7 +40,8 @@
|
40
|
40
|
|
41
|
41
|
<service
|
42
|
42
|
android:name=".ConnectionService"
|
43
|
|
- android:permission="android.permission.BIND_TELECOM_CONNECTION_SERVICE">
|
|
43
|
+ android:permission="android.permission.BIND_TELECOM_CONNECTION_SERVICE"
|
|
44
|
+ android:exported="true">
|
44
|
45
|
<intent-filter>
|
45
|
46
|
<action android:name="android.telecom.ConnectionService" />
|
46
|
47
|
</intent-filter>
|