@rownd/react-native 2.10.1 → 2.11.1
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/7.4/checksums/checksums.lock +0 -0
- package/android/.gradle/7.4/checksums/md5-checksums.bin +0 -0
- package/android/.gradle/7.4/checksums/sha1-checksums.bin +0 -0
- package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/android/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/ios/RowndPlugin.swift +1 -1
- package/package.json +1 -1
- package/rownd-react-native.podspec +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/ios/RowndPlugin.swift
CHANGED
|
@@ -51,7 +51,7 @@ class RowndPlugin: NSObject {
|
|
|
51
51
|
let json = loadingAnimation.data(using: .utf8)!
|
|
52
52
|
do {
|
|
53
53
|
let decoder = JSONDecoder()
|
|
54
|
-
let animation = try decoder.decode(
|
|
54
|
+
let animation = try decoder.decode(LottieAnimation.self, from: json)
|
|
55
55
|
appCustomizations.loadingAnimation = animation
|
|
56
56
|
} catch {
|
|
57
57
|
print("Failed to encode Loading Animation: \(error)")
|
package/package.json
CHANGED
|
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
|
|
|
17
17
|
s.source_files = "ios/**/*.{h,m,mm,swift}"
|
|
18
18
|
|
|
19
19
|
s.dependency "React-Core"
|
|
20
|
-
s.dependency "Rownd", "~> 2.
|
|
20
|
+
s.dependency "Rownd", "~> 2.7.0"
|
|
21
21
|
|
|
22
22
|
# Don't install the dependencies when we run `pod install` in the old architecture.
|
|
23
23
|
if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then
|