build.gradle 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. apply plugin: 'com.android.application'
  2. android {
  3. signingConfigs {
  4. release {
  5. storeFile file('20200508.jks')
  6. storePassword ''
  7. keyAlias 'key0'
  8. keyPassword ''
  9. }
  10. }
  11. compileSdkVersion 30
  12. defaultConfig {
  13. applicationId "me.yoqi.android.compass"
  14. minSdkVersion 16
  15. targetSdkVersion 30
  16. versionCode 1
  17. versionName "1.0"
  18. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  19. }
  20. buildTypes {
  21. release {
  22. signingConfig signingConfigs.release
  23. minifyEnabled false
  24. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  25. }
  26. }
  27. }
  28. dependencies {
  29. implementation fileTree(dir: "libs", include: ["*.jar"])
  30. implementation 'androidx.appcompat:appcompat:1.1.0'
  31. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  32. testImplementation 'junit:junit:4.12'
  33. androidTestImplementation 'androidx.test.ext:junit:1.1.1'
  34. androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  35. }