Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'io.fabric'
  3.  
  4. android {
  5. signingConfigs {
  6. config {
  7. keyAlias System.getenv("GRADLE_KEYSTORE_ALIAS")
  8. keyPassword System.getenv("GRADLE_KEYSTORE_ALIAS_PASSWORD")
  9. storeFile file(System.getenv("GRADLE_KEYSTORE_FILE"))
  10. storePassword System.getenv("GRADLE_KEYSTORE_PASSWORD")
  11. }
  12. }
  13. compileSdkVersion 28
  14. defaultConfig {
  15. applicationId "it.dummy.projeca"
  16. minSdkVersion 21
  17. targetSdkVersion 28
  18. versionCode 10215
  19. versionName "1.2.15"
  20. "androidx.activity_splash_screen.runner.AndroidJUnitRunner"
  21. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  22. testInstrumentationRunnerArguments clearPackageData: 'true'
  23.  
  24.  
  25. buildConfigField "long", "TIMESTAMP", System.currentTimeMillis() + "L"
  26. buildConfigField "boolean", "LOG_ENABLED", "true"
  27.  
  28. javaCompileOptions {
  29. annotationProcessorOptions {
  30. arguments = [
  31. "kripton.androidx": "true",
  32. "kripton.debug" : "false",
  33. "kripton.log" : "true",
  34. ]
  35. }
  36. }
  37. }
  38. buildTypes {
  39. release {
  40. buildConfigField "boolean", "LOG_ENABLED", "false"
  41.  
  42. zipAlignEnabled true
  43. minifyEnabled true
  44. proguardFiles System.getenv("GRADLE_PROGUARD_CONFIG_FILE"),
  45. 'proguard-rules.pro'
  46.  
  47. }
  48. }
  49. compileOptions {
  50. sourceCompatibility JavaVersion.VERSION_1_8
  51. targetCompatibility JavaVersion.VERSION_1_8
  52. }
  53. }
  54.  
  55. dependencies {
  56. // removed for clearity
  57. ...
  58. }
  59.  
  60. apply plugin: 'com.google.gms.google-services'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement