Browse Source

fix(android) excludes hermes related libs from the apk

master
Titus-Andrei Moldovan 5 years ago
parent
commit
c54fed78c8
1 changed files with 4 additions and 0 deletions
  1. 4
    0
      android/app/build.gradle

+ 4
- 0
android/app/build.gradle View File

16
     compileSdkVersion rootProject.ext.compileSdkVersion
16
     compileSdkVersion rootProject.ext.compileSdkVersion
17
     buildToolsVersion rootProject.ext.buildToolsVersion
17
     buildToolsVersion rootProject.ext.buildToolsVersion
18
 
18
 
19
+    packagingOptions {
20
+        exclude 'lib/*/libhermes*.so'
21
+    }
22
+
19
     defaultConfig {
23
     defaultConfig {
20
         applicationId 'org.jitsi.meet'
24
         applicationId 'org.jitsi.meet'
21
         versionCode vcode
25
         versionCode vcode

Loading…
Cancel
Save