1234567891011121314151617181920212223242526272829303132333435363738394041 |
- apply plugin: 'com.android.application'
-
- android {
- compileSdkVersion rootProject.ext.compileSdkVersion
- buildToolsVersion rootProject.ext.buildToolsVersion
-
- defaultConfig {
- applicationId 'org.jitsi.meet'
- versionCode Integer.parseInt("${version}")
- versionName "1.9.${version}"
-
- minSdkVersion rootProject.ext.minSdkVersion
- targetSdkVersion rootProject.ext.targetSdkVersion
-
- ndk {
- abiFilters 'armeabi-v7a', 'x86'
- }
-
- packagingOptions {
- // The project react-native does not provide 64-bit binaries at the
- // time of this writing. Unfortunately, packaging any 64-bit
- // binaries into the .apk will crash the app at runtime on 64-bit
- // platforms.
- exclude '/lib/mips64/**'
- exclude '/lib/arm64-v8a/**'
- exclude '/lib/x86_64/**'
- }
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
-
- dependencies {
- compile fileTree(dir: 'libs', include: ['*.jar'])
-
- implementation project(':sdk')
- }
|