Skip to content

Commit

Permalink
Bump 0.1.0 release and reduce min sdk to 27
Browse files Browse the repository at this point in the history
  • Loading branch information
fenimore committed May 24, 2021
1 parent 4b50fe1 commit a33791e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ android {
compileSdkVersion 30
defaultConfig {
applicationId "com.timenotclocks.bookcase"
minSdkVersion 29
minSdkVersion 27
targetSdkVersion 30
versionCode 9
versionName "0.0.9"
versionCode 10
versionName "0.1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
Binary file modified app/release/app-release.apk
Binary file not shown.
4 changes: 2 additions & 2 deletions app/release/output-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
{
"type": "SINGLE",
"filters": [],
"versionCode": 9,
"versionName": "0.0.9",
"versionCode": 10,
"versionName": "0.1.0",
"outputFile": "app-release.apk"
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class ChartActivity : AppCompatActivity() {
val mapLabels: Map<String, String> = mapOf(
"01" to "Jan", "02" to "Feb", "03" to "Mar", "04" to "Apr", "05" to "May",
"06" to "Jun", "07" to "Jul", "08" to "Aug", "09" to "Sept", "10" to "Oct",
"11" to "Nov", "12" to "Jan"
"11" to "Nov", "12" to "Dec"
)
val monthlyBar = findViewById<BarChartView>(R.id.chart_bar_monthly_read)
monthlyBar.animation.duration = animationDuration
Expand Down

0 comments on commit a33791e

Please sign in to comment.