build.gradle 827 B

12345678910111213141516171819202122232425262728293031323334
  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. }
  20. repositories {
  21. flatDir {
  22. dirs 'libs'
  23. }
  24. }
  25. dependencies {
  26. implementation fileTree(dir: 'libs', include: ['*.jar'])
  27. implementation 'androidx.appcompat:appcompat:1.2.0'
  28. implementation 'androidx.constraintlayout:constraintlayout:2.0.0'
  29. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  30. implementation 'com.google.android.material:material:1.0.0'
  31. }