Bubble android client. Fork of https://git.zx2c4.com/wireguard-android/
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

build.gradle 925 B

123456789101112131415161718192021222324252627282930
  1. apply plugin: 'com.android.library'
  2. android {
  3. buildToolsVersion '29.0.3'
  4. compileSdkVersion 29
  5. compileOptions {
  6. sourceCompatibility JavaVersion.VERSION_1_8
  7. targetCompatibility JavaVersion.VERSION_1_8
  8. }
  9. defaultConfig {
  10. minSdkVersion 21
  11. targetSdkVersion 29
  12. versionCode 1
  13. versionName '1.0'
  14. }
  15. externalNativeBuild {
  16. cmake {
  17. path 'tools/CMakeLists.txt'
  18. }
  19. }
  20. }
  21. dependencies {
  22. api "net.sourceforge.streamsupport:android-retrofuture:$streamsupportVersion"
  23. api "net.sourceforge.streamsupport:android-retrostreams:$streamsupportVersion"
  24. api "com.google.code.findbugs:jsr305:$jsr305Version"
  25. implementation "androidx.annotation:annotation:$annotationsVersion"
  26. implementation "androidx.collection:collection:$collectionVersion"
  27. implementation "com.jakewharton.threetenabp:threetenabp:$threetenabpVersion"
  28. }