react-native-smallcase-gateway 5.2.0 → 5.3.0
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/CHANGELOG.md +4 -0
- package/android/build.gradle +1 -1
- package/android/gradle.properties +18 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [5.3.0](https://github.com/smallcase/react-native-smallcase-gateway/compare/v5.2.0...v5.3.0) (2025-10-01)
|
|
6
|
+
|
|
7
|
+
### [5.0.2-rc.3](https://github.com/smallcase/react-native-smallcase-gateway/compare/v5.0.2-rc.2...v5.0.2-rc.3) (2025-07-22)
|
|
8
|
+
|
|
5
9
|
## [5.2.0](https://github.com/smallcase/react-native-smallcase-gateway/compare/v5.0.2-rc.2...v5.2.0) (2025-08-14)
|
|
6
10
|
|
|
7
11
|
|
package/android/build.gradle
CHANGED
|
@@ -149,7 +149,7 @@ def kotlin_version = getExtOrDefault('kotlinVersion')
|
|
|
149
149
|
dependencies {
|
|
150
150
|
//noinspection GradleDynamicVersion
|
|
151
151
|
implementation 'com.facebook.react:react-native:+' // From node_modules
|
|
152
|
-
implementation 'com.smallcase.gateway:sdk:4.
|
|
152
|
+
implementation 'com.smallcase.gateway:sdk:4.4.0'
|
|
153
153
|
implementation 'com.smallcase.loans:sdk:3.1.1'
|
|
154
154
|
implementation "androidx.core:core-ktx:1.3.1"
|
|
155
155
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
@@ -1,9 +1,23 @@
|
|
|
1
|
+
## For more details on how to configure your build environment visit
|
|
2
|
+
# http://www.gradle.org/docs/current/userguide/build_environment.html
|
|
3
|
+
#
|
|
4
|
+
# Specifies the JVM arguments used for the daemon process.
|
|
5
|
+
# The setting is particularly useful for tweaking memory settings.
|
|
6
|
+
# Default value: -Xmx1024m -XX:MaxPermSize=256m
|
|
7
|
+
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
|
|
8
|
+
#
|
|
9
|
+
# When configured, Gradle will run in incubating parallel mode.
|
|
10
|
+
# This option should only be used with decoupled projects. For more details, visit
|
|
11
|
+
# https://developer.android.com/r/tools/gradle-multi-project-decoupled-projects
|
|
12
|
+
# org.gradle.parallel=true
|
|
13
|
+
#Wed Oct 01 13:43:28 IST 2025
|
|
14
|
+
SmallcaseGateway_compileSdkVersion=31
|
|
1
15
|
SmallcaseGateway_kotlinVersion=1.7.0
|
|
2
16
|
SmallcaseGateway_minSdkVersion=21
|
|
3
|
-
SmallcaseGateway_targetSdkVersion=31
|
|
4
|
-
SmallcaseGateway_compileSdkVersion=31
|
|
5
17
|
SmallcaseGateway_ndkversion=21.4.7075529
|
|
6
|
-
|
|
18
|
+
SmallcaseGateway_targetSdkVersion=31
|
|
19
|
+
android.enableJetifier=true
|
|
20
|
+
android.useAndroidX=true
|
|
7
21
|
artifactory_contextUrl=https\://artifactory.smallcase.com/artifactory
|
|
8
22
|
artifactory_password=reactNativeUser123
|
|
9
|
-
artifactory_user=react_native_user
|
|
23
|
+
artifactory_user=react_native_user
|
package/package.json
CHANGED