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 485 B

12345678910111213141516171819202122232425262728
  1. allprojects {
  2. repositories {
  3. google()
  4. jcenter()
  5. }
  6. }
  7. buildscript {
  8. dependencies {
  9. classpath 'com.android.tools.build:gradle:3.6.1'
  10. classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.70'
  11. }
  12. repositories {
  13. google()
  14. jcenter()
  15. }
  16. }
  17. task clean(type: Delete) {
  18. delete rootProject.buildDir
  19. }
  20. tasks {
  21. wrapper {
  22. gradleVersion = "6.2.1"
  23. distributionType = Wrapper.DistributionType.ALL
  24. }
  25. }