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.

1234567891011121314151617181920212223242526
  1. apply plugin: 'com.android.application'
  2. android {
  3. buildToolsVersion "26.0.0"
  4. buildTypes {
  5. release {
  6. minifyEnabled false
  7. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  8. }
  9. }
  10. compileSdkVersion 26
  11. dataBinding {
  12. enabled true
  13. }
  14. defaultConfig {
  15. applicationId "com.wireguard.android"
  16. minSdkVersion 21
  17. targetSdkVersion 26
  18. versionCode 1
  19. versionName "1.0"
  20. }
  21. }
  22. dependencies {
  23. compile fileTree(dir: 'libs', include: ['*.jar'])
  24. }