build.gradle 561 B

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