您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

build.gradle 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion rootProject.ext.compileSdkVersion
  4. defaultConfig {
  5. applicationId 'org.jitsi.meet'
  6. versionCode Integer.parseInt("${version}")
  7. versionName "1.9.${version}"
  8. minSdkVersion rootProject.ext.minSdkVersion
  9. targetSdkVersion rootProject.ext.targetSdkVersion
  10. ndk {
  11. abiFilters 'armeabi-v7a', 'x86'
  12. }
  13. packagingOptions {
  14. // The project react-native does not provide 64-bit binaries at the
  15. // time of this writing. Unfortunately, packaging any 64-bit
  16. // binaries into the .apk will crash the app at runtime on 64-bit
  17. // platforms.
  18. exclude '/lib/mips64/**'
  19. exclude '/lib/arm64-v8a/**'
  20. exclude '/lib/x86_64/**'
  21. }
  22. }
  23. buildTypes {
  24. release {
  25. minifyEnabled false
  26. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  27. }
  28. }
  29. compileOptions {
  30. sourceCompatibility JavaVersion.VERSION_1_8
  31. targetCompatibility JavaVersion.VERSION_1_8
  32. }
  33. }
  34. dependencies {
  35. compile fileTree(dir: 'libs', include: ['*.jar'])
  36. compile 'com.android.support:appcompat-v7:22.2.0'
  37. compile 'com.google.android.gms:play-services-auth:15.0.0'
  38. implementation project(':sdk')
  39. debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.6.1'
  40. releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.6.1'
  41. }
  42. if (project.file('google-services.json').exists()) {
  43. apply plugin: 'com.google.gms.google-services'
  44. }