File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11## Changelog
22
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+
38### v4.0.0 Sep 1st, 2022
49
510* 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
4040currently compatible with the following native Reader SDK versions:
4141
4242 * iOS: 1.6.0 and above
43- * Android: 1.6.1 and above
43+ * Android: 1.7.5 and above
4444
4545Try the [ sample app] to see the plugin in action or follow the instructions in
4646the [ 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 {
4444apply plugin : ' com.android.library'
4545
4646def 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)'
4848
4949android {
5050 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"
2626apply plugin : ' kotlin-android'
2727
2828android {
29- compileSdkVersion 32
29+ compileSdkVersion 33
3030
3131 lintOptions {
3232 disable ' InvalidPackage'
3333 checkReleaseBuilds false
3434 }
35- compileSdkVersion 32
35+ compileSdkVersion 33
3636 ndkVersion = " 21.4.7075529"
3737
3838 sourceSets {
@@ -43,7 +43,7 @@ android {
4343 // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
4444 applicationId " com.example.flutter.squareup.sdk.reader"
4545 minSdkVersion 26
46- targetSdkVersion 31
46+ targetSdkVersion 33
4747 versionCode flutterVersionCode. toInteger()
4848 versionName flutterVersionName
4949 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
Original file line number Diff line number Diff line change 11buildscript {
2- ext. kotlin_version = ' 1.6.21 '
2+ ext. kotlin_version = ' 1.8.0 '
33
44 repositories {
55 google()
@@ -29,8 +29,8 @@ allprojects {
2929
3030ext {
3131 // 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)"
3434}
3535
3636rootProject. buildDir = ' ../build'
@@ -41,6 +41,6 @@ subprojects {
4141 project. evaluationDependsOn(' :app' )
4242}
4343
44- task clean ( type : Delete ) {
44+ tasks . register( " clean " , Delete ) {
4545 delete rootProject. buildDir
4646}
Original file line number Diff line number Diff line change 1- // @dart=2.9
21/*
32Copyright 2022 Square Inc.
43
You can’t perform that action at this time.
0 commit comments