build.gradle 919 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 26
  4. buildToolsVersion '26.0.3'
  5. useLibrary 'org.apache.http.legacy'
  6. defaultConfig {
  7. applicationId "ca.psiphon.tunneledwebview"
  8. minSdkVersion 15
  9. targetSdkVersion 26
  10. versionCode 1
  11. versionName "1.0"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. }
  20. repositories {
  21. flatDir {
  22. dirs 'libs'
  23. }
  24. maven {
  25. url "https://raw.github.com/Psiphon-Labs/psiphon-tunnel-core-Android-library/master/releases"
  26. }
  27. }
  28. dependencies {
  29. implementation fileTree(dir: 'libs', include: ['*.jar'])
  30. testImplementation 'junit:junit:4.12'
  31. implementation 'com.android.support:appcompat-v7:26.1.0'
  32. implementation 'ca.psiphon:psiphontunnel:1.0.7'
  33. }