@kookyleo/graphviz-anywhere-rn 0.1.8 → 0.2.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/build.gradle
CHANGED
|
@@ -30,11 +30,20 @@ android {
|
|
|
30
30
|
externalNativeBuild {
|
|
31
31
|
cmake {
|
|
32
32
|
cppFlags ""
|
|
33
|
+
// ANDROID_STL=c++_shared: this module links against the shared
|
|
34
|
+
// libc++ runtime. The host application (or React Native's own
|
|
35
|
+
// Gradle setup) must ensure libc++_shared.so is packaged in the
|
|
36
|
+
// APK/AAB for every ABI that is enabled. React Native >= 0.71
|
|
37
|
+
// bundles libc++_shared.so automatically; standalone apps must
|
|
38
|
+
// add `packagingOptions { pickFirst "**/libc++_shared.so" }` to
|
|
39
|
+
// avoid duplicate-library conflicts during merging.
|
|
40
|
+
// Reference: https://developer.android.com/ndk/guides/cpp-support
|
|
33
41
|
arguments "-DANDROID_STL=c++_shared"
|
|
34
42
|
}
|
|
35
43
|
}
|
|
36
44
|
|
|
37
45
|
ndk {
|
|
46
|
+
// All four ABIs are built; x86 is required for Intel-host emulators.
|
|
38
47
|
abiFilters "armeabi-v7a", "arm64-v8a", "x86", "x86_64"
|
|
39
48
|
}
|
|
40
49
|
}
|
|
@@ -11,6 +11,9 @@ Pod::Spec.new do |s|
|
|
|
11
11
|
s.authors = package["author"]
|
|
12
12
|
s.source = { :git => package["repository"]["url"], :tag => "v#{s.version}" }
|
|
13
13
|
|
|
14
|
+
# iOS 15.1 matches the IOS_MIN_VERSION used in scripts/build-ios.sh to compile
|
|
15
|
+
# the prebuilt staticlib. Lowering this value without rebuilding the prebuilt
|
|
16
|
+
# would produce an ABI/SDK mismatch at link time.
|
|
14
17
|
s.ios.deployment_target = "15.1"
|
|
15
18
|
s.osx.deployment_target = "11.0"
|
|
16
19
|
|
package/package.json
CHANGED