react-native-edgee 1.0.10 → 1.0.11
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/README.md +2 -2
- package/ios/EdgeeReactNative.podspec +3 -3
- package/package.json +1 -1
- package/react-native-edgee.podspec +4 -5
package/README.md
CHANGED
|
@@ -248,7 +248,7 @@ services.
|
|
|
248
248
|
|
|
249
249
|
In the Services section, you will find guides on activating and customizing
|
|
250
250
|
features such as advanced analytics, A/B testing, security, and more:
|
|
251
|
-
https://www.edgee.
|
|
251
|
+
https://www.edgee.ai/docs/proxy/services/overview
|
|
252
252
|
|
|
253
253
|
For more details about the React Native SDK, visit:
|
|
254
|
-
https://github.com/edgee-
|
|
254
|
+
https://github.com/edgee-ai/react-native-edgee
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
require "json"
|
|
2
2
|
|
|
3
3
|
package = JSON.parse(File.read(File.join(__dir__, "../package.json")))
|
|
4
|
-
|
|
4
|
+
folly_compiler_flags = '-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32'
|
|
5
5
|
|
|
6
6
|
Pod::Spec.new do |s|
|
|
7
7
|
s.name = "EdgeeReactNative"
|
|
@@ -12,7 +12,7 @@ Pod::Spec.new do |s|
|
|
|
12
12
|
s.authors = package["author"]
|
|
13
13
|
|
|
14
14
|
s.platforms = { :ios => "11.0" }
|
|
15
|
-
s.source = { :git => "https://github.com/edgee-
|
|
15
|
+
s.source = { :git => "https://github.com/edgee-ai/react-native-edgee.git", :tag => "#{s.version}" }
|
|
16
16
|
|
|
17
17
|
s.source_files = "*.{h,m,mm,swift}"
|
|
18
18
|
|
|
@@ -27,7 +27,7 @@ Pod::Spec.new do |s|
|
|
|
27
27
|
"CLANG_CXX_LANGUAGE_STANDARD" => "c++17"
|
|
28
28
|
}
|
|
29
29
|
s.dependency "React-Codegen"
|
|
30
|
-
s.dependency "RCT-Folly"
|
|
30
|
+
s.dependency "RCT-Folly"
|
|
31
31
|
s.dependency "RCTRequired"
|
|
32
32
|
s.dependency "RCTTypeSafety"
|
|
33
33
|
s.dependency "ReactCommon/turbomodule/core"
|
package/package.json
CHANGED
|
@@ -1,19 +1,18 @@
|
|
|
1
1
|
require "json"
|
|
2
2
|
|
|
3
3
|
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
|
|
4
|
-
folly_version = '2024.11.18.00'
|
|
5
4
|
folly_compiler_flags = '-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32'
|
|
6
5
|
|
|
7
6
|
Pod::Spec.new do |s|
|
|
8
7
|
s.name = "react-native-edgee"
|
|
9
8
|
s.version = package["version"]
|
|
10
9
|
s.summary = package["description"]
|
|
11
|
-
s.homepage = "https://github.com/edgee-
|
|
10
|
+
s.homepage = "https://github.com/edgee-ai/react-native-edgee"
|
|
12
11
|
s.license = package["license"]
|
|
13
|
-
s.authors = { "Edgee" => "hello@edgee.
|
|
12
|
+
s.authors = { "Edgee" => "hello@edgee.ai" }
|
|
14
13
|
|
|
15
14
|
s.platforms = { :ios => "11.0" }
|
|
16
|
-
s.source = { :git => "https://github.com/edgee-
|
|
15
|
+
s.source = { :git => "https://github.com/edgee-ai/react-native-edgee.git", :tag => "#{s.version}" }
|
|
17
16
|
|
|
18
17
|
s.source_files = "ios/**/*.{h,m,mm,swift}"
|
|
19
18
|
|
|
@@ -28,7 +27,7 @@ Pod::Spec.new do |s|
|
|
|
28
27
|
"CLANG_CXX_LANGUAGE_STANDARD" => "c++17"
|
|
29
28
|
}
|
|
30
29
|
s.dependency "React-Codegen"
|
|
31
|
-
s.dependency "RCT-Folly"
|
|
30
|
+
s.dependency "RCT-Folly"
|
|
32
31
|
s.dependency "RCTRequired"
|
|
33
32
|
s.dependency "RCTTypeSafety"
|
|
34
33
|
s.dependency "ReactCommon/turbomodule/core"
|