build.gradle 633 B

1234567891011121314151617181920212223242526272829303132333435
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 28
  4. defaultConfig {
  5. minSdkVersion 15
  6. // targetSdkVersion 22
  7. targetSdkVersion 28
  8. versionCode 1
  9. versionName "1.0"
  10. ndk{
  11. abiFilters "armeabi"
  12. }
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
  18. }
  19. }
  20. sourceSets {
  21. main {
  22. jniLibs.srcDirs = ['libs']
  23. }
  24. }
  25. }
  26. dependencies {
  27. implementation 'com.android.support:support-v4:28.0.0'
  28. }