build.gradle 840 B

12345678910111213141516171819202122232425262728
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 33
  4. defaultConfig {
  5. minSdkVersion 15
  6. targetSdkVersion 33
  7. versionCode 10001
  8. versionName "1.0.1"
  9. }
  10. buildTypes {
  11. release {
  12. minifyEnabled false
  13. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  14. }
  15. }
  16. }
  17. dependencies {
  18. implementation fileTree(dir: "libs", include: ["*.jar"])
  19. implementation 'androidx.appcompat:appcompat:1.5.0'
  20. implementation 'com.google.android.material:material:1.6.1'
  21. implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
  22. testImplementation 'junit:junit:4.13.2'
  23. androidTestImplementation 'androidx.test.ext:junit:1.1.3'
  24. androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'}