Skip to content

Commit 708b847

Browse files
authored
Merge pull request #52 from Parsely/set_min_sdk_to_21
Set `minSdk` to 21, `compile` and `target` to 33
2 parents 68c0e2c + 8329d0b commit 708b847

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

example/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ plugins {
33
}
44

55
android {
6-
compileSdkVersion 32
6+
compileSdkVersion 33
77

88
defaultConfig {
99
applicationId "com.parsely.example.parselyexample"
10-
minSdkVersion 23
11-
targetSdkVersion 32
10+
minSdkVersion 21
11+
targetSdkVersion 33
1212
versionCode 1
1313
versionName "1.0"
1414
}

parsely/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ plugins {
22
id 'com.android.library'
33
}
44

5-
ext.VERSION = '3.0.3'
5+
ext.VERSION = '3.0.4'
66

77
android {
8-
compileSdkVersion 32
8+
compileSdkVersion 33
99

1010
defaultConfig {
11-
minSdkVersion 23
12-
targetSdkVersion 32
11+
minSdkVersion 21
12+
targetSdkVersion 33
1313
}
1414
buildTypes {
1515
release {

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pluginManagement {
2-
gradle.ext.agpVersion = '7.2.1'
2+
gradle.ext.agpVersion = '7.2.2'
33

44
plugins {
55
id 'com.android.application' version gradle.ext.agpVersion

0 commit comments

Comments
 (0)