Guest User

Untitled

a guest
Feb 21st, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. signingConfigs {
  2. release {
  3. storeFile file("PATH TO KEY STORE")
  4. storePassword "STORE PASSWORD"
  5. keyAlias "ALIAS"
  6. keyPassword "PASSWORD"
  7. }
  8. }
  9. buildTypes {
  10. release {
  11. minifyEnabled false
  12. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  13. signingConfig signingConfigs.release
  14. testCoverageEnabled true
  15. debuggable false
  16. }
  17. debug { testCoverageEnabled true }
  18. }
Add Comment
Please, Sign In to add comment