Skip to content

Commit

Permalink
A lot of UI improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
rparkins999 committed Dec 15, 2021
1 parent 354979f commit cd4b1a4
Show file tree
Hide file tree
Showing 4 changed files with 856 additions and 301 deletions.
9 changes: 6 additions & 3 deletions SecondsClock/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ def keystorePropertiesFile = rootProject.file("../Keys/keystore.properties")
def keystoreProperties = new Properties()
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))


android {
compileSdk 30
compileSdk 31

signingConfigs {
config {
Expand All @@ -24,19 +25,21 @@ android {
applicationId "uk.co.yahoo.p1rpp.secondsclock"
minSdk 26
targetSdk 26
versionCode 1
versionName "0.1"
versionCode 2
versionName "1.0"
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt')
signingConfig signingConfigs.config
delete("build/intermediates/incremental/mergeReleaseResources/merger.xml")
resValue("string", 'build_time', "${(new Date()).toString()}")
}
debug {
signingConfig signingConfigs.config
delete("build/intermediates/incremental/mergeDebugResources/merger.xml")
resValue("string", 'build_time', "${(new Date()).toString()}")
}
}
Expand Down
Loading

0 comments on commit cd4b1a4

Please sign in to comment.