Bubble android client. Fork of https://git.zx2c4.com/wireguard-android/
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

42 rader
1.2 KiB

  1. apply plugin: 'com.android.library'
  2. version wireguardVersionName
  3. group groupName
  4. android {
  5. buildToolsVersion '29.0.3'
  6. compileSdkVersion 29
  7. compileOptions {
  8. sourceCompatibility JavaVersion.VERSION_1_8
  9. targetCompatibility JavaVersion.VERSION_1_8
  10. }
  11. defaultConfig {
  12. minSdkVersion 21
  13. targetSdkVersion 29
  14. versionCode wireguardVersionCode
  15. versionName wireguardVersionName
  16. }
  17. externalNativeBuild {
  18. cmake {
  19. path 'tools/CMakeLists.txt'
  20. }
  21. }
  22. testOptions.unitTests.all {
  23. testLogging {
  24. events 'passed', 'skipped', 'failed', 'standardOut', 'standardError'
  25. }
  26. }
  27. }
  28. dependencies {
  29. api "net.sourceforge.streamsupport:android-retrostreams:$streamsupportVersion"
  30. implementation "androidx.annotation:annotation:$annotationsVersion"
  31. implementation "androidx.collection:collection:$collectionVersion"
  32. implementation "com.google.code.findbugs:jsr305:$jsr305Version"
  33. implementation "com.jakewharton.threetenabp:threetenabp:$threetenabpVersion"
  34. implementation "net.i2p.crypto:eddsa:$eddsaVersion"
  35. testImplementation "junit:junit:$junitVersion"
  36. }
  37. apply from: "publish.gradle"