File tree 6 files changed +14
-10
lines changed
6 files changed +14
-10
lines changed Original file line number Diff line number Diff line change 1
1
## Changelog
2
2
3
+ ### v5.0.0 Aug 22st, 2023
4
+
5
+ * Upgrade to Reader SDK 1.7.5 on Android.
6
+ * Support CompileSDK and targetSDK 33 on Android
7
+
3
8
### v4.0.0 Sep 1st, 2022
4
9
5
10
* Update package dependencies to latest versions for Null Safety support.
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ The Flutter plugin for Reader SDK acts as a wrapper on the native SDKs and is
40
40
currently compatible with the following native Reader SDK versions:
41
41
42
42
* iOS: 1.6.0 and above
43
- * Android: 1.6.1 and above
43
+ * Android: 1.7.5 and above
44
44
45
45
Try the [ sample app] to see the plugin in action or follow the instructions in
46
46
the [ getting started guide] to build a custom solution from scratch.
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ rootProject.allprojects {
44
44
apply plugin : ' com.android.library'
45
45
46
46
def DEFAULT_PLAY_SERVICES_BASE_VERSION = ' 16.0.1'
47
- def READER_SDK_VERSION = ' [1.6.1 , 2.0)'
47
+ def READER_SDK_VERSION = ' [1.7.5 , 2.0)'
48
48
49
49
android {
50
50
compileSdkVersion 32
Original file line number Diff line number Diff line change @@ -26,13 +26,13 @@ apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
26
26
apply plugin : ' kotlin-android'
27
27
28
28
android {
29
- compileSdkVersion 32
29
+ compileSdkVersion 33
30
30
31
31
lintOptions {
32
32
disable ' InvalidPackage'
33
33
checkReleaseBuilds false
34
34
}
35
- compileSdkVersion 32
35
+ compileSdkVersion 33
36
36
ndkVersion = " 21.4.7075529"
37
37
38
38
sourceSets {
@@ -43,7 +43,7 @@ android {
43
43
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
44
44
applicationId " com.example.flutter.squareup.sdk.reader"
45
45
minSdkVersion 26
46
- targetSdkVersion 31
46
+ targetSdkVersion 33
47
47
versionCode flutterVersionCode. toInteger()
48
48
versionName flutterVersionName
49
49
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
Original file line number Diff line number Diff line change 1
1
buildscript {
2
- ext. kotlin_version = ' 1.6.21 '
2
+ ext. kotlin_version = ' 1.8.0 '
3
3
4
4
repositories {
5
5
google()
@@ -29,8 +29,8 @@ allprojects {
29
29
30
30
ext {
31
31
// Override the reader sdk version with the this parameter
32
- // make sure the version is above min version 1.6.1
33
- readerSdkVersion = " [1.6.1 , 2.0)"
32
+ // make sure the version is above min version 1.7.5
33
+ readerSdkVersion = " [1.7.5 , 2.0)"
34
34
}
35
35
36
36
rootProject. buildDir = ' ../build'
@@ -41,6 +41,6 @@ subprojects {
41
41
project. evaluationDependsOn(' :app' )
42
42
}
43
43
44
- task clean ( type : Delete ) {
44
+ tasks . register( " clean " , Delete ) {
45
45
delete rootProject. buildDir
46
46
}
Original file line number Diff line number Diff line change 1
- // @dart=2.9
2
1
/*
3
2
Copyright 2022 Square Inc.
4
3
You can’t perform that action at this time.
0 commit comments