Bubble android client. Fork of https://git.zx2c4.com/wireguard-android/
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

51 satır
1.3 KiB

  1. allprojects {
  2. repositories {
  3. google()
  4. jcenter()
  5. }
  6. }
  7. buildscript {
  8. ext {
  9. annotationsVersion = '1.1.0'
  10. appcompatVersion = '1.1.0'
  11. cardviewVersion = '1.0.0'
  12. collectionVersion = '1.1.0'
  13. coreKtxVersion = '1.2.0'
  14. constraintLayoutVersion = '1.1.3'
  15. coordinatorLayoutVersion = '1.1.0'
  16. agpVersion = '3.6.1'
  17. fragmentVersion = '1.2.2'
  18. materialComponentsVersion = '1.1.0'
  19. jsr305Version = '3.0.2'
  20. kotlinVersion = '1.3.70'
  21. preferenceVersion = '1.1.0'
  22. streamsupportVersion = '1.7.1'
  23. threetenabpVersion = '1.2.2'
  24. // ZXING switched minSdk to 24 so we cannot upgrade to 4.0.2 without following suit.
  25. // If you choose to upgrade to minSDK 24 then you should also disable Jetifier from
  26. // gradle.properties.
  27. zxingEmbeddedVersion = '3.6.0'
  28. eddsaVersion = '0.3.0'
  29. }
  30. dependencies {
  31. classpath "com.android.tools.build:gradle:$agpVersion"
  32. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
  33. }
  34. repositories {
  35. google()
  36. jcenter()
  37. }
  38. }
  39. task clean(type: Delete) {
  40. delete rootProject.buildDir
  41. }
  42. tasks {
  43. wrapper {
  44. gradleVersion = "6.2.1"
  45. distributionType = Wrapper.DistributionType.ALL
  46. }
  47. }