@regulaforensics/react-native-document-reader-api 9.6.628-rc → 9.6.629-nightly
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/RNDocumentReaderApi.podspec +1 -1
- package/android/build.gradle +2 -2
- package/example/ios/Podfile +1 -2
- package/example/package-lock.json +280 -1112
- package/example/package.json +3 -4
- package/index.d.ts +1 -10
- package/index.js +1 -9
- package/ios/RGLWConfig.m +0 -3
- package/package.json +1 -1
|
@@ -14,6 +14,6 @@ Pod::Spec.new do |s|
|
|
|
14
14
|
s.source = { :http => 'file:' + __dir__ }
|
|
15
15
|
s.ios.deployment_target = '13.0'
|
|
16
16
|
s.source_files = "ios/*.{h,m}"
|
|
17
|
-
s.dependency '
|
|
17
|
+
s.dependency 'DocumentReaderNightly', '9.6.6496'
|
|
18
18
|
s.dependency 'React'
|
|
19
19
|
end
|
package/android/build.gradle
CHANGED
|
@@ -20,7 +20,7 @@ android {
|
|
|
20
20
|
rootProject.allprojects {
|
|
21
21
|
repositories {
|
|
22
22
|
maven {
|
|
23
|
-
url "https://maven.regulaforensics.com/RegulaDocumentReader/
|
|
23
|
+
url "https://maven.regulaforensics.com/RegulaDocumentReader/Nightly"
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
}
|
|
@@ -29,7 +29,7 @@ dependencies {
|
|
|
29
29
|
//noinspection GradleDynamicVersion
|
|
30
30
|
implementation 'com.facebook.react:react-native:+'
|
|
31
31
|
//noinspection GradleDependency
|
|
32
|
-
implementation('com.regula.documentreader:api:9.6.
|
|
32
|
+
implementation('com.regula.documentreader:api:9.6.13038') {
|
|
33
33
|
transitive = true
|
|
34
34
|
}
|
|
35
35
|
}
|
package/example/ios/Podfile
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
source
|
|
2
|
-
source 'https://github.com/regulaforensics/podspecs.git'
|
|
1
|
+
source "https://github.com/CocoaPods/Specs.git"
|
|
3
2
|
|
|
4
3
|
# Resolve react_native_pods.rb with node to allow for hoisting
|
|
5
4
|
require Pod::Executable.execute_command('node', ['-p',
|