build.gradle 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. ndk {
  12. // 设置支持的SO库架构
  13. abiFilters 'armeabi' //, 'x86', 'armeabi-v7a', 'x86_64', 'arm64-v8a'
  14. }
  15. }
  16. useLibrary 'org.apache.http.legacy'
  17. signingConfigs {
  18. releaseConfig {
  19. storeFile file("../monkeytong.jks")
  20. storePassword project.hasProperty("KEYSTORE_PASS") ? KEYSTORE_PASS : System.getenv("KEYSTORE_PASS")
  21. keyAlias project.hasProperty("ALIAS_NAME") ? ALIAS_NAME : System.getenv("ALIAS_NAME")
  22. keyPassword project.hasProperty("ALIAS_PASS") ? ALIAS_PASS : System.getenv("ALIAS_PASS")
  23. }
  24. }
  25. buildTypes {
  26. release {
  27. minifyEnabled false
  28. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  29. }
  30. }
  31. }
  32. dependencies {
  33. compile 'com.tencent.bugly:crashreport_upgrade:latest.release'
  34. compile 'com.tencent.bugly:nativecrashreport:latest.release'
  35. implementation fileTree(dir: 'libs', include: ['*.jar'])
  36. implementation 'com.android.support:appcompat-v7:26.1.0'
  37. implementation 'com.android.support.constraint:constraint-layout:1.0.2'
  38. testImplementation 'junit:junit:4.12'
  39. androidTestImplementation 'com.android.support.test:runner:1.0.1'
  40. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
  41. }