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
parent
commit
8f81a75a61
No account linked to committer's email address
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      android/sdk/src/main/AndroidManifest.xml

+ 2
- 1
android/sdk/src/main/AndroidManifest.xml View File

40
 
40
 
41
         <service
41
         <service
42
             android:name=".ConnectionService"
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
             <intent-filter>
45
             <intent-filter>
45
                 <action android:name="android.telecom.ConnectionService" />
46
                 <action android:name="android.telecom.ConnectionService" />
46
             </intent-filter>
47
             </intent-filter>

Loading…
Cancel
Save