build.gradle 841 B

1234567891011121314151617181920212223242526272829
  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.6.1'
  20. implementation 'com.google.android.material:material:1.9.0'
  21. implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
  22. testImplementation 'junit:junit:4.13.2'
  23. androidTestImplementation 'androidx.test.ext:junit:1.1.5'
  24. androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
  25. }