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

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. }