build.gradle.kts 282 B

123456789101112131415161718
  1. plugins {
  2. alias(libs.plugins.android.library)
  3. }
  4. android {
  5. namespace = "com.grkj.skin"
  6. compileSdk = 36
  7. defaultConfig {
  8. minSdk = 25
  9. targetSdk = 36
  10. }
  11. }
  12. dependencies {
  13. implementation(libs.androidx.appcompat)
  14. implementation(libs.material)
  15. }