build.gradle 892 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. apply plugin: 'com.android.library'
  2. apply from: '../mavenpush.gradle'
  3. android {
  4. compileSdkVersion 27
  5. buildToolsVersion '27.0.2'
  6. defaultConfig {
  7. minSdkVersion 14
  8. targetSdkVersion 27
  9. versionCode 22
  10. versionName "2.2.0-native"
  11. vectorDrawables.useSupportLibrary = true
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. compileOptions {
  20. sourceCompatibility JavaVersion.VERSION_1_7
  21. targetCompatibility JavaVersion.VERSION_1_7
  22. }
  23. lintOptions {
  24. abortOnError false
  25. }
  26. resourcePrefix 'ucrop_'
  27. sourceSets.main {
  28. jni.srcDirs = [];
  29. }
  30. }
  31. dependencies {
  32. compile 'com.android.support:appcompat-v7:27.0.2'
  33. compile 'com.squareup.okhttp3:okhttp:3.8.1'
  34. }