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.
 
 
 
 
 
 

32 linhas
983 B

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