Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

build.gradle 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. implementation project(':sdk')
  37. }