Bubble android client. Fork of https://git.zx2c4.com/wireguard-android/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

60 rivejä
1.5 KiB

  1. allprojects {
  2. repositories {
  3. google()
  4. jcenter()
  5. }
  6. }
  7. buildscript {
  8. ext {
  9. agpVersion = '3.6.2'
  10. annotationsVersion = '1.1.0'
  11. appcompatVersion = '1.1.0'
  12. bintrayPluginVersion = '1.8.4'
  13. biometricVersion = '1.0.1'
  14. cardviewVersion = '1.0.0'
  15. collectionVersion = '1.1.0'
  16. constraintLayoutVersion = '1.1.3'
  17. coordinatorLayoutVersion = '1.1.0'
  18. coreKtxVersion = '1.2.0'
  19. coroutinesVersion = '1.3.5'
  20. eddsaVersion = '0.3.0'
  21. fragmentVersion = '1.2.4'
  22. jsr305Version = '3.0.2'
  23. junitVersion = '4.13'
  24. kotlinVersion = '1.3.71'
  25. materialComponentsVersion = '1.2.0-alpha05'
  26. mavenPluginVersion = '2.1'
  27. preferenceVersion = '1.1.0'
  28. streamsupportVersion = '1.7.2'
  29. threetenabpVersion = '1.2.3'
  30. zxingEmbeddedVersion = '3.6.0'
  31. groupName = 'com.wireguard.android'
  32. }
  33. dependencies {
  34. classpath "com.android.tools.build:gradle:$agpVersion"
  35. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
  36. classpath "com.github.dcendents:android-maven-gradle-plugin:$mavenPluginVersion"
  37. classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:$bintrayPluginVersion"
  38. }
  39. repositories {
  40. google()
  41. jcenter()
  42. }
  43. }
  44. task clean(type: Delete) {
  45. delete rootProject.buildDir
  46. }
  47. tasks {
  48. wrapper {
  49. gradleVersion = "6.2.2"
  50. distributionType = Wrapper.DistributionType.ALL
  51. }
  52. }
  53. apply from: "version.gradle"