build.gradle 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 33
  4. signingConfigs {
  5. release {
  6. storeFile file('XunfeiTTS-android.jks')
  7. storePassword 'sxGNv1cH'
  8. keyAlias 'key0'
  9. keyPassword 'sxGNv1cH'
  10. }
  11. }
  12. defaultConfig {
  13. applicationId "me.yoqi.android.xunfeitts"
  14. minSdkVersion 19
  15. targetSdkVersion 33
  16. versionCode 1
  17. versionName "1.1"
  18. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  19. }
  20. buildTypes {
  21. release {
  22. minifyEnabled false
  23. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  24. }
  25. }
  26. }
  27. dependencies {
  28. implementation fileTree(dir: "libs", include: ["*.jar"])
  29. implementation 'androidx.appcompat:appcompat:1.6.1'
  30. implementation 'com.google.android.material:material:1.9.0'
  31. implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
  32. testImplementation 'junit:junit:4.13.2'
  33. androidTestImplementation 'androidx.test.ext:junit:1.1.5'
  34. androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
  35. implementation 'com.android.support:cardview-v7:28.0.0'
  36. implementation 'com.jakewharton:butterknife:8.4.0'
  37. annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'
  38. implementation files('libs/Msc.jar')
  39. implementation 'homhomlin.lib:sldinglayout:0.9.0'
  40. }