react-native-okaycam 2.0.0 → 2.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/android/.gradle/6.8/executionHistory/executionHistory.lock +0 -0
- package/android/.gradle/6.8/fileChanges/last-build.bin +0 -0
- package/android/.gradle/6.8/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/6.8/gc.properties +0 -0
- package/android/.gradle/6.9/executionHistory/executionHistory.lock +0 -0
- package/android/.gradle/6.9/fileChanges/last-build.bin +0 -0
- package/android/.gradle/6.9/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/6.9/gc.properties +0 -0
- package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/android/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/android/.gradle/checksums/checksums.lock +0 -0
- package/android/.gradle/checksums/md5-checksums.bin +0 -0
- package/android/.gradle/checksums/sha1-checksums.bin +0 -0
- package/android/.gradle/configuration-cache/gc.properties +0 -0
- package/android/.gradle/vcs-1/gc.properties +0 -0
- package/android/build.gradle +1 -1
- package/android/gradlew +0 -0
- package/ios/RNOkayCam.swift +5 -3
- package/package.json +1 -1
- package/react-native-okaycam.podspec +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
package/android/build.gradle
CHANGED
|
@@ -40,7 +40,7 @@ dependencies {
|
|
|
40
40
|
implementation('com.facebook.react:react-native:+'){
|
|
41
41
|
exclude module: 'fbjni-java-only'
|
|
42
42
|
}
|
|
43
|
-
implementation('com.innov8tif.okaycam:OkayCam:
|
|
43
|
+
implementation('com.innov8tif.okaycam:OkayCam:2.0.2@aar') {
|
|
44
44
|
transitive = true
|
|
45
45
|
}
|
|
46
46
|
implementation 'com.googlecode.json-simple:json-simple:1.1.1'
|
package/android/gradlew
CHANGED
|
File without changes
|
package/ios/RNOkayCam.swift
CHANGED
|
@@ -106,12 +106,14 @@ class RNOkayCam: NSObject {
|
|
|
106
106
|
okayCamConfig.captureConfigPair = CaptureConfigPair(
|
|
107
107
|
firstPhoto: OkayCamCaptureConfig(
|
|
108
108
|
timeOut: firstPhoto.object(forKey: "delay") as! Int,
|
|
109
|
-
onFlash: firstPhoto.object(forKey: "onFlash") as! Bool,
|
|
110
|
-
|
|
109
|
+
onFlash: firstPhoto.object(forKey: "onFlash") as! Bool,
|
|
110
|
+
onImageQuality: firstPhoto.object(forKey: "onImageQuality") as! Bool,
|
|
111
|
+
outputPath: (firstPhotoPath != nil) ? URL(string: (firstPhoto.object(forKey: "outputPath") as? String)!) : nil
|
|
111
112
|
),
|
|
112
113
|
secondPhoto: (secondPhoto != nil) ? OkayCamCaptureConfig(
|
|
113
114
|
timeOut: secondPhoto?.object(forKey: "delay") as? Int ?? 0,
|
|
114
|
-
onFlash: secondPhoto?.object(forKey: "onFlash") as? Bool ?? false,
|
|
115
|
+
onFlash: secondPhoto?.object(forKey: "onFlash") as? Bool ?? false,
|
|
116
|
+
onImageQuality: secondPhoto?.object(forKey: "onImageQuality") as! Bool,
|
|
115
117
|
outputPath: (secondPhotoPath != nil) ? URL(string: (secondPhoto?.object(forKey: "outputPath") as! String?)!) : nil
|
|
116
118
|
) : nil
|
|
117
119
|
)
|
package/package.json
CHANGED