react-native-reanimated 2.15.0 → 2.17.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/Common/cpp/Tools/SingleInstanceChecker.h +10 -2
- package/android/.gradle/7.5.1/checksums/checksums.lock +0 -0
- package/android/.gradle/7.5.1/checksums/md5-checksums.bin +0 -0
- package/android/.gradle/7.5.1/checksums/sha1-checksums.bin +0 -0
- package/android/.gradle/7.5.1/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/android/.gradle/7.5.1/executionHistory/executionHistory.bin +0 -0
- package/android/.gradle/7.5.1/executionHistory/executionHistory.lock +0 -0
- package/android/.gradle/7.5.1/fileHashes/fileHashes.bin +0 -0
- package/android/.gradle/7.5.1/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/android/.gradle/buildOutputCleanup/cache.properties +1 -1
- package/android/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/android/.gradle/file-system.probe +0 -0
- package/android/react-native-reanimated-67-hermes.aar +0 -0
- package/android/react-native-reanimated-67-jsc.aar +0 -0
- package/android/react-native-reanimated-68-hermes.aar +0 -0
- package/android/react-native-reanimated-68-jsc.aar +0 -0
- package/android/react-native-reanimated-69-hermes.aar +0 -0
- package/android/react-native-reanimated-69-jsc.aar +0 -0
- package/android/react-native-reanimated-70-hermes.aar +0 -0
- package/android/react-native-reanimated-70-jsc.aar +0 -0
- package/android/react-native-reanimated-71-hermes.aar +0 -0
- package/android/react-native-reanimated-71-jsc.aar +0 -0
- package/package.json +1 -1
|
@@ -7,6 +7,10 @@
|
|
|
7
7
|
#include <iostream>
|
|
8
8
|
#include <string>
|
|
9
9
|
|
|
10
|
+
#ifdef ANDROID
|
|
11
|
+
#include <android/log.h>
|
|
12
|
+
#endif
|
|
13
|
+
|
|
10
14
|
namespace reanimated {
|
|
11
15
|
|
|
12
16
|
// This is a class that counts how many instances of a different class there
|
|
@@ -22,8 +26,12 @@ class SingleInstanceChecker {
|
|
|
22
26
|
private:
|
|
23
27
|
void assertWithMessage(bool condition, std::string message) {
|
|
24
28
|
if (!condition) {
|
|
25
|
-
|
|
26
|
-
|
|
29
|
+
#ifdef ANDROID
|
|
30
|
+
__android_log_print(
|
|
31
|
+
ANDROID_LOG_WARN, "Reanimated", "%s", message.c_str());
|
|
32
|
+
#else
|
|
33
|
+
std::cerr << "[Reanimated] " << message << std::endl;
|
|
34
|
+
#endif
|
|
27
35
|
}
|
|
28
36
|
}
|
|
29
37
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#
|
|
1
|
+
#Sat Apr 22 14:38:43 UTC 2023
|
|
2
2
|
gradle.version=7.5.1
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED