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.

build.gradle 2.1 KiB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. allprojects {
  2. repositories {
  3. google()
  4. jcenter()
  5. }
  6. }
  7. buildscript {
  8. ext {
  9. agpVersion = '4.0.1'
  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.3.1'
  18. coroutinesVersion = '1.3.5'
  19. eddsaVersion = '0.3.0'
  20. fragmentVersion = '1.2.5'
  21. jsr305Version = '3.0.2'
  22. junitVersion = '4.13'
  23. kotlinVersion = '1.3.72'
  24. materialComponentsVersion = '1.2.0'
  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. lottieVersion = '3.4.1'
  43. rxbindingVersion = '4.0.0'
  44. groupName = 'com.getbubblenow.android'
  45. }
  46. dependencies {
  47. classpath "com.android.tools.build:gradle:${agpVersion}"
  48. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
  49. classpath "com.github.dcendents:android-maven-gradle-plugin:$mavenPluginVersion"
  50. classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:$bintrayPluginVersion"
  51. }
  52. repositories {
  53. google()
  54. jcenter()
  55. }
  56. }
  57. task clean(type: Delete) {
  58. delete rootProject.buildDir
  59. }
  60. tasks {
  61. wrapper {
  62. gradleVersion = "6.4"
  63. distributionType = Wrapper.DistributionType.ALL
  64. distributionSha256Sum = "d08f7e24d061910382c2fda9915e6ed42dd1480ae2e99211f92c70190cb697e0"
  65. }
  66. }
  67. apply from: "version.gradle"