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,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>

Loading…
Cancel
Save