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.

build.gradle 1.7 KiB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. bintrayPluginVersion = '1.8.4'
  30. mavenPluginVersion = '2.1'
  31. junitVersion = '4.13'
  32. groupName = 'com.wireguard.android'
  33. }
  34. dependencies {
  35. classpath "com.android.tools.build:gradle:$agpVersion"
  36. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
  37. classpath "com.github.dcendents:android-maven-gradle-plugin:$mavenPluginVersion"
  38. classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:$bintrayPluginVersion"
  39. }
  40. repositories {
  41. google()
  42. jcenter()
  43. }
  44. }
  45. task clean(type: Delete) {
  46. delete rootProject.buildDir
  47. }
  48. tasks {
  49. wrapper {
  50. gradleVersion = "6.2.2"
  51. distributionType = Wrapper.DistributionType.ALL
  52. }
  53. }
  54. apply from: "version.gradle"