improve gradle build to support nightly builds

main
Konrad Pozniak 6 years ago
parent 9b8a335585
commit 473497801d
  1. 18
      app/build.gradle
  2. 0
      app/src/blue/res/drawable/ic_launcher_background.xml
  3. 0
      app/src/blue/res/mipmap-hdpi/ic_launcher.png
  4. 0
      app/src/blue/res/mipmap-mdpi/ic_launcher.png
  5. 0
      app/src/blue/res/mipmap-xhdpi/ic_launcher.png
  6. 0
      app/src/blue/res/mipmap-xxhdpi/ic_launcher.png
  7. 0
      app/src/blue/res/mipmap-xxxhdpi/ic_launcher.png
  8. 0
      app/src/green/res/drawable/ic_launcher_background.xml
  9. 0
      app/src/green/res/mipmap-hdpi/ic_launcher.png
  10. 0
      app/src/green/res/mipmap-mdpi/ic_launcher.png
  11. 0
      app/src/green/res/mipmap-xhdpi/ic_launcher.png
  12. 0
      app/src/green/res/mipmap-xxhdpi/ic_launcher.png
  13. 0
      app/src/green/res/mipmap-xxxhdpi/ic_launcher.png

@ -3,6 +3,15 @@ apply plugin: 'kotlin-kapt'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
def getGitSha = { ->
def stdout = new ByteArrayOutputStream()
exec {
commandLine 'git', 'rev-parse', '--short' , 'HEAD'
standardOutput = stdout
}
return stdout.toString().trim()
}
android {
compileSdkVersion 27
buildToolsVersion '27.0.3'
@ -21,8 +30,15 @@ android {
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
debug {
debug { }
}
flavorDimensions "color"
productFlavors {
blue { }
green {
applicationIdSuffix ".test"
versionNameSuffix "-"+getGitSha()
}
}

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

Before

Width:  |  Height:  |  Size: 8.4 KiB

After

Width:  |  Height:  |  Size: 8.4 KiB

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 5.6 KiB

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

Before

Width:  |  Height:  |  Size: 8.2 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

Loading…
Cancel
Save