File tree 7 files changed +15
-11
lines changed
reader-sdk-react-native-quickstart/android
src/main/java/com/rnreadersdksample
7 files changed +15
-11
lines changed Original file line number Diff line number Diff line change 2
2
3
3
### v1.4.5 Apr 25, 2024
4
4
5
- * Upgrade Reader SDK version support to 1.7.4 for iOS
5
+ * Upgrade Reader SDK version support to 1.7.6 for iOS
6
6
7
7
### v1.4.4 Aug 16, 2023
8
8
9
- * Upgrade Reader SDK version support to 1.7.5 for Android
10
- * Support CompileSDK and targetSDK 33 on Android
9
+ * Upgrade Reader SDK version support to 1.7.7 for Android
10
+ * Support CompileSDK and targetSDK 34 on Android
11
11
12
12
### v1.4.3 Jan 20, 2023
13
13
Original file line number Diff line number Diff line change 6
6
This repo contains a React Native plugin for Square [ Reader SDK] . Reader SDK for
7
7
React Native supports the following native Reader SDK versions:
8
8
9
- * iOS: 1.7.4 and above
10
- * Android: 1.7.5 and above
9
+ * iOS: 1.7.6 and above
10
+ * Android: 1.7.7 and above
11
11
12
12
> This plugin loads latest version of native Reader SDK by default according to [ update policy for Reader SDK] .
13
13
Original file line number Diff line number Diff line change 1
1
2
2
Pod ::Spec . new do |s |
3
3
s . name = "RNReaderSDK"
4
- s . version = "1.7.4 "
4
+ s . version = "1.7.6 "
5
5
s . summary = "A React Native plugin for Square Reader SDK"
6
6
s . description = <<-DESC
7
7
A React Native plugin for Square Reader SDK
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ buildscript {
28
28
apply plugin : ' com.android.library'
29
29
30
30
def DEFAULT_PLAY_SERVICES_BASE_VERSION = ' 16.0.1'
31
- def READER_SDK_VERSION = ' 1.7.4 '
31
+ def READER_SDK_VERSION = ' 1.7.7 '
32
32
33
33
android {
34
34
compileSdkVersion 33
Original file line number Diff line number Diff line change @@ -220,7 +220,10 @@ dependencies {
220
220
}
221
221
// The version of react-native is set by the React Native Gradle Plugin
222
222
implementation(" com.facebook.react:react-android" )
223
- // implementation 'com.reactnative:react-native-square-reader-sdk:1.7.2'
223
+ // implementation 'com.reactnative:react-native-square-reader-sdk:1.7.4'
224
+ def readerSdkVersion = " 1.7.7"
225
+ implementation " com.squareup.sdk.reader:reader-sdk-$SQUARE_READER_SDK_APPLICATION_ID :$readerSdkVersion "
226
+ runtimeOnly " com.squareup.sdk.reader:reader-sdk-internals:$readerSdkVersion "
224
227
225
228
226
229
implementation " androidx.multidex:multidex:2.0.1"
Original file line number Diff line number Diff line change @@ -18,10 +18,11 @@ import com.facebook.react.ReactNativeHost
18
18
import com.facebook.react.ReactPackage
19
19
import com.facebook.react.PackageList
20
20
import com.facebook.soloader.SoLoader
21
- import com.squareup.sdk.reader.ReaderSdk
22
21
import com.rnreadersdksample.MainApplication
22
+
23
23
import android.content.Context
24
24
import com.facebook.react.ReactInstanceManager
25
+ import com.squareup.sdk.reader.ReaderSdk
25
26
import java.lang.ClassNotFoundException
26
27
import java.lang.NoSuchMethodException
27
28
import java.lang.IllegalAccessException
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ buildscript {
28
28
buildToolsVersion = " 33.0.0"
29
29
minSdkVersion = 24
30
30
compileSdkVersion = 34
31
- targetSdkVersion = 33
32
- readerSdkVersion = " 1.7.4 "
31
+ targetSdkVersion = 34
32
+ readerSdkVersion = " 1.7.7 "
33
33
ndkVersion = " 21.4.7075529"
34
34
kotlin_version = ' 1.8.21'
35
35
}
You can’t perform that action at this time.
0 commit comments