Bubble android client. Fork of https://git.zx2c4.com/wireguard-android/
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
 
 

61 рядки
1.7 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. coroutinesVersion = '1.3.5'
  15. constraintLayoutVersion = '1.1.3'
  16. coordinatorLayoutVersion = '1.1.0'
  17. agpVersion = '3.6.1'
  18. fragmentVersion = '1.2.3'
  19. materialComponentsVersion = '1.1.0'
  20. jsr305Version = '3.0.2'
  21. kotlinVersion = '1.3.71'
  22. preferenceVersion = '1.1.0'
  23. streamsupportVersion = '1.7.1'
  24. threetenabpVersion = '1.2.2'
  25. // ZXING switched minSdk to 24 so we cannot upgrade to 4.0.2 without following suit.
  26. // If you choose to upgrade to minSDK 24 then you should also disable Jetifier from
  27. // gradle.properties.
  28. zxingEmbeddedVersion = '3.6.0'
  29. eddsaVersion = '0.3.0'
  30. bintrayPluginVersion = '1.8.4'
  31. mavenPluginVersion = '2.1'
  32. junitVersion = '4.13'
  33. groupName = 'com.wireguard.android'
  34. }
  35. dependencies {
  36. classpath "com.android.tools.build:gradle:$agpVersion"
  37. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
  38. classpath "com.github.dcendents:android-maven-gradle-plugin:$mavenPluginVersion"
  39. classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:$bintrayPluginVersion"
  40. }
  41. repositories {
  42. google()
  43. jcenter()
  44. }
  45. }
  46. task clean(type: Delete) {
  47. delete rootProject.buildDir
  48. }
  49. tasks {
  50. wrapper {
  51. gradleVersion = "6.2.2"
  52. distributionType = Wrapper.DistributionType.ALL
  53. }
  54. }
  55. apply from: "version.gradle"