build.gradle 1013 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 32
  4. defaultConfig {
  5. minSdkVersion 21
  6. targetSdkVersion 22
  7. versionCode 4
  8. versionName "1.4"
  9. ndk {
  10. abiFilters "armeabi-v7a"
  11. }
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. repositories {
  20. flatDir {
  21. dirs 'libs'
  22. }
  23. }
  24. sourceSets {
  25. main {
  26. jniLibs.srcDirs = ['libs']
  27. }
  28. }
  29. }
  30. dependencies {
  31. //implementation fileTree(dir: 'libs', include: ['*.jar'])
  32. implementation 'androidx.appcompat:appcompat:1.2.0'
  33. implementation 'androidx.constraintlayout:constraintlayout:2.0.0'
  34. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  35. implementation 'com.google.android.material:material:1.0.0'
  36. api files('libs\\classes.jar')
  37. implementation project(':SeriaApp')
  38. }