react-native-risk-sdk 1.3.1 → 1.4.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/android/.gradle/8.0.1/checksums/checksums.lock +0 -0
- package/android/.gradle/8.0.1/checksums/md5-checksums.bin +0 -0
- package/android/.gradle/8.0.1/checksums/sha1-checksums.bin +0 -0
- package/android/.gradle/8.0.1/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/android/.gradle/8.0.1/dependencies-accessors/gc.properties +0 -0
- package/android/.gradle/8.0.1/executionHistory/executionHistory.lock +0 -0
- package/android/.gradle/8.0.1/fileChanges/last-build.bin +0 -0
- package/android/.gradle/8.0.1/fileHashes/fileHashes.bin +0 -0
- package/android/.gradle/8.0.1/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/8.0.1/fileHashes/resourceHashesCache.bin +0 -0
- package/android/.gradle/8.0.1/gc.properties +0 -0
- package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/android/.gradle/buildOutputCleanup/cache.properties +2 -2
- package/android/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/android/.idea/misc.xml +1 -1
- package/android/build.gradle +11 -11
- package/android/gradle/wrapper/gradle-wrapper.properties +1 -1
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#
|
|
2
|
-
gradle.version=
|
|
1
|
+
#Fri Jul 14 12:21:24 IST 2023
|
|
2
|
+
gradle.version=8.0.1
|
|
Binary file
|
package/android/.idea/misc.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
2
|
<project version="4">
|
|
3
3
|
<component name="ExternalStorageConfigurationManager" enabled="true" />
|
|
4
|
-
<component name="ProjectRootManager" version="2" languageLevel="JDK_17"
|
|
4
|
+
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" project-jdk-name="jbr-17" project-jdk-type="JavaSDK">
|
|
5
5
|
<output url="file://$PROJECT_DIR$/build/classes" />
|
|
6
6
|
</component>
|
|
7
7
|
<component name="ProjectType">
|
package/android/build.gradle
CHANGED
|
@@ -43,7 +43,7 @@ buildscript {
|
|
|
43
43
|
mavenCentral()
|
|
44
44
|
}
|
|
45
45
|
dependencies {
|
|
46
|
-
classpath 'com.android.tools.build:gradle:
|
|
46
|
+
classpath 'com.android.tools.build:gradle:8.0.0'
|
|
47
47
|
}
|
|
48
48
|
}
|
|
49
49
|
}
|
|
@@ -53,7 +53,7 @@ apply plugin: 'maven-publish'
|
|
|
53
53
|
|
|
54
54
|
android {
|
|
55
55
|
compileSdkVersion safeExtGet('compileSdkVersion', DEFAULT_COMPILE_SDK_VERSION)
|
|
56
|
-
|
|
56
|
+
namespace 'in.finbox.mobileriskmanager.reactnative'
|
|
57
57
|
defaultConfig {
|
|
58
58
|
minSdkVersion safeExtGet('minSdkVersion', DEFAULT_MIN_SDK_VERSION)
|
|
59
59
|
targetSdkVersion safeExtGet('targetSdkVersion', DEFAULT_TARGET_SDK_VERSION)
|
|
@@ -162,12 +162,12 @@ afterEvaluate { project ->
|
|
|
162
162
|
}
|
|
163
163
|
|
|
164
164
|
task androidJavadocJar(type: Jar, dependsOn: androidJavadoc) {
|
|
165
|
-
|
|
165
|
+
archiveClassifier = 'javadoc'
|
|
166
166
|
from androidJavadoc.destinationDir
|
|
167
167
|
}
|
|
168
168
|
|
|
169
169
|
task androidSourcesJar(type: Jar) {
|
|
170
|
-
|
|
170
|
+
archiveClassifier = 'sources'
|
|
171
171
|
from android.sourceSets.main.java.srcDirs
|
|
172
172
|
include '**/*.java'
|
|
173
173
|
}
|
|
@@ -191,11 +191,11 @@ afterEvaluate { project ->
|
|
|
191
191
|
archives androidJavadocJar
|
|
192
192
|
}
|
|
193
193
|
|
|
194
|
-
task installArchives(type: Upload) {
|
|
195
|
-
configuration = configurations.archives
|
|
196
|
-
repositories.maven {
|
|
197
|
-
// Deploy to react-native-event-bridge/maven, ready to publish to npm
|
|
198
|
-
url = uri("file://${projectDir}/../android/maven")
|
|
199
|
-
}
|
|
200
|
-
}
|
|
194
|
+
// task installArchives(type: Upload) {
|
|
195
|
+
// configuration = configurations.archives
|
|
196
|
+
// repositories.maven {
|
|
197
|
+
// // Deploy to react-native-event-bridge/maven, ready to publish to npm
|
|
198
|
+
// url = uri("file://${projectDir}/../android/maven")
|
|
199
|
+
// }
|
|
200
|
+
// }
|
|
201
201
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#Wed Nov 02 18:15:26 IST 2022
|
|
2
2
|
distributionBase=GRADLE_USER_HOME
|
|
3
|
-
distributionUrl=https\://services.gradle.org/distributions/gradle-
|
|
3
|
+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.1-all.zip
|
|
4
4
|
distributionPath=wrapper/dists
|
|
5
5
|
zipStorePath=wrapper/dists
|
|
6
6
|
zipStoreBase=GRADLE_USER_HOME
|