build.gradle.kts 288 B

123456789101112131415
  1. plugins {
  2. id("com.android.library")
  3. }
  4. // 使用自定义插件
  5. apply<DefaultGradlePlugin>()
  6. android {
  7. namespace = "me.yokeyword.indexablerv"
  8. }
  9. dependencies {
  10. api("com.github.promeg:tinypinyin:2.0.3")
  11. // api("com.github.promeg:tinypinyin-lexicons-android-cncity:2.0.3")
  12. }