Bubble android client. Fork of https://git.zx2c4.com/wireguard-android/
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

72 righe
2.0 KiB

  1. allprojects {
  2. repositories {
  3. google()
  4. jcenter()
  5. }
  6. }
  7. buildscript {
  8. ext {
  9. agpVersion = '3.6.3'
  10. annotationsVersion = '1.1.0'
  11. appcompatVersion = '1.1.0'
  12. bintrayPluginVersion = '1.8.4'
  13. biometricVersion = '1.0.1'
  14. collectionVersion = '1.1.0'
  15. constraintLayoutVersion = '1.1.3'
  16. coordinatorLayoutVersion = '1.1.0'
  17. coreKtxVersion = '1.2.0'
  18. coroutinesVersion = '1.3.5'
  19. eddsaVersion = '0.3.0'
  20. fragmentVersion = '1.2.4'
  21. jsr305Version = '3.0.2'
  22. junitVersion = '4.13'
  23. kotlinVersion = '1.3.72'
  24. materialComponentsVersion = '1.2.0-alpha06'
  25. mavenPluginVersion = '2.1'
  26. preferenceVersion = '1.1.1'
  27. streamsupportVersion = '1.7.2'
  28. threetenabpVersion = '1.2.4'
  29. zxingEmbeddedVersion = '3.6.0'
  30. tunnelVersion = '1.0.20200407'
  31. interceptorVersion = '3.12.2'
  32. gsonVersion = '2.8.6'
  33. retrofitVersion = '2.7.2'
  34. converterGsonVersion = '2.7.2'
  35. appcompatVersion = '1.1.0'
  36. constraintlayoutVersion = '1.1.3'
  37. lifecycleExtensionVersion = '2.2.0'
  38. lifecycleViewModelVersion = '2.2.0'
  39. rxandroidVersion = '2.0.1'
  40. rxjavaVersion = '2.1.6'
  41. adapterrxjava2Version = '2.3.0'
  42. groupName = 'com.wireguard.android'
  43. }
  44. dependencies {
  45. classpath "com.android.tools.build:gradle:${agpVersion}"
  46. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
  47. classpath "com.github.dcendents:android-maven-gradle-plugin:$mavenPluginVersion"
  48. classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:$bintrayPluginVersion"
  49. }
  50. repositories {
  51. google()
  52. jcenter()
  53. }
  54. }
  55. task clean(type: Delete) {
  56. delete rootProject.buildDir
  57. }
  58. tasks {
  59. wrapper {
  60. gradleVersion = "6.4"
  61. distributionType = Wrapper.DistributionType.ALL
  62. distributionSha256Sum = "d08f7e24d061910382c2fda9915e6ed42dd1480ae2e99211f92c70190cb697e0"
  63. }
  64. }
  65. apply from: "version.gradle"