build.gradle 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 26
  4. defaultConfig {
  5. applicationId "me.yoqi.app.wxredpacket"
  6. minSdkVersion 15
  7. targetSdkVersion 26
  8. versionCode 1
  9. versionName "1.0"
  10. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  11. }
  12. signingConfigs {
  13. releaseConfig {
  14. storeFile file("../monkeytong.jks")
  15. storePassword project.hasProperty("KEYSTORE_PASS") ? KEYSTORE_PASS : System.getenv("KEYSTORE_PASS")
  16. keyAlias project.hasProperty("ALIAS_NAME") ? ALIAS_NAME : System.getenv("ALIAS_NAME")
  17. keyPassword project.hasProperty("ALIAS_PASS") ? ALIAS_PASS : System.getenv("ALIAS_PASS")
  18. }
  19. }
  20. buildTypes {
  21. release {
  22. minifyEnabled false
  23. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  24. }
  25. }
  26. }
  27. dependencies {
  28. compile 'com.tencent.bugly:crashreport_upgrade:latest.release'
  29. compile 'com.tencent.bugly:nativecrashreport:latest.release'
  30. implementation fileTree(dir: 'libs', include: ['*.jar'])
  31. implementation 'com.android.support:appcompat-v7:26.1.0'
  32. implementation 'com.android.support.constraint:constraint-layout:1.0.2'
  33. testImplementation 'junit:junit:4.12'
  34. androidTestImplementation 'com.android.support.test:runner:1.0.1'
  35. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
  36. }