@pinwheel/react-native-pinwheel 3.0.2 → 3.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.vscode/settings.json +4 -0
- package/CHANGELOG.md +5 -1
- package/RNPinwheelSDK.podspec +1 -1
- package/android/build.gradle +3 -3
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,10 +4,14 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
# 3.0.x Releases
|
|
6
6
|
|
|
7
|
-
- `3.0.x` Releases - [3.0.0](#300) | [3.0.1](#301) | [3.0.2](#302)
|
|
7
|
+
- `3.0.x` Releases - [3.0.0](#300) | [3.0.1](#301) | [3.0.2](#302) | [3.0.3](#303)
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
|
|
11
|
+
### [3.0.3](https://github.com/underdog-tech/pinwheel-ios-sdk/releases/tag/3.0.3)
|
|
12
|
+
|
|
13
|
+
Changed Minimum Android SDK requirements to 22
|
|
14
|
+
|
|
11
15
|
### [3.0.2](https://github.com/underdog-tech/pinwheel-ios-sdk/releases/tag/3.0.2)
|
|
12
16
|
|
|
13
17
|
Changed Minimum Android SDK requirements to 22
|
package/RNPinwheelSDK.podspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Pod::Spec.new do |s|
|
|
2
2
|
s.name = "RNPinwheelSDK"
|
|
3
|
-
s.version = "3.0.
|
|
3
|
+
s.version = "3.0.3"
|
|
4
4
|
s.summary = "React Native plugin for Pinwheel's SDK"
|
|
5
5
|
s.description = <<-DESC
|
|
6
6
|
An open source React Native plugin for calling Pinwheel's native SDKs to manage payroll data.
|
package/android/build.gradle
CHANGED
|
@@ -16,11 +16,11 @@ apply plugin: 'com.android.library'
|
|
|
16
16
|
apply plugin: 'kotlin-android'
|
|
17
17
|
|
|
18
18
|
android {
|
|
19
|
-
compileSdkVersion
|
|
19
|
+
compileSdkVersion 31
|
|
20
20
|
|
|
21
21
|
defaultConfig {
|
|
22
|
-
minSdkVersion
|
|
23
|
-
targetSdkVersion
|
|
22
|
+
minSdkVersion 22
|
|
23
|
+
targetSdkVersion 31
|
|
24
24
|
versionCode 1
|
|
25
25
|
versionName "1.0"
|
|
26
26
|
}
|
package/dist/constants.d.ts
CHANGED
package/dist/constants.js
CHANGED