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

build.gradle 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion rootProject.ext.compileSdkVersion
  4. buildToolsVersion rootProject.ext.buildToolsVersion
  5. defaultConfig {
  6. applicationId 'org.jitsi.meet'
  7. versionCode Integer.parseInt("${version}")
  8. versionName "1.4.${version}"
  9. minSdkVersion rootProject.ext.minSdkVersion
  10. targetSdkVersion rootProject.ext.targetSdkVersion
  11. ndk {
  12. abiFilters 'armeabi-v7a', 'x86'
  13. }
  14. packagingOptions {
  15. // The project react-native does not provide 64-bit binaries at the
  16. // time of this writing. Unfortunately, packaging any 64-bit
  17. // binaries into the .apk will crash the app at runtime on 64-bit
  18. // platforms.
  19. exclude '/lib/mips64/**'
  20. exclude '/lib/arm64-v8a/**'
  21. exclude '/lib/x86_64/**'
  22. }
  23. }
  24. buildTypes {
  25. release {
  26. minifyEnabled false
  27. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  28. }
  29. }
  30. }
  31. dependencies {
  32. compile fileTree(dir: 'libs', include: ['*.jar'])
  33. debugCompile project(path: ':sdk', configuration: 'debug')
  34. releaseCompile project(path: ':sdk', configuration: 'release')
  35. }