Skip to content

Commit 4fe25f7

Browse files
committed
lower minSdkVersion and update manifest
1 parent da82f16 commit 4fe25f7

4 files changed

Lines changed: 10 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# Not Released
2+
3+
# 0.1.2
4+
> 2020-07-21
5+
- Removed icons from manifest
6+
- Lowered `minSdkVersion` from `24` to `23`
7+
18
# 0.1.1
29
> 2020-07-21
310
Added `onClose` abstract method to `BaseScannerActivity`

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ android {
1010

1111
defaultConfig {
1212

13-
minSdkVersion 24
13+
minSdkVersion 23
1414
targetSdkVersion 29
1515
versionCode project.property("version_code").toInteger()
1616
versionName project.property("version_name") as String

app/src/main/AndroidManifest.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@
1313

1414
<application
1515
android:allowBackup="true"
16-
android:icon="@mipmap/ic_launcher"
1716
android:label="@string/app_name"
18-
android:roundIcon="@mipmap/ic_launcher_round"
1917
android:supportsRtl="true"
2018
android:theme="@style/AppTheme">
2119
<activity

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ android.useAndroidX=true
1919
android.enableJetifier=true
2020
# Kotlin code style for this project: "official" or "obsolete":
2121
kotlin.code.style=official
22-
version_code=2
23-
version_name=0.1.1
22+
version_code=3
23+
version_name=0.1.2

0 commit comments

Comments
 (0)