Skip to content

Commit ff17f14

Browse files
authored
Merge pull request #29 from talsec/fix_duplicate_class_ios
fix(iOS): resolve duplicate class error
2 parents 624b2ef + cdaee6d commit ff17f14

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# freeRASP 3.3.1
2+
3+
### iOS
4+
5+
- ⚡ Fixed issue with duplicate headers that caused `Multiple commands produce ...` error ([#11](https://github.com/talsec/Free-RASP-ReactNative/issues/11), [#26](https://github.com/talsec/Free-RASP-ReactNative/issues/26))
6+
17
# freeRASP 3.3.0
28

39
### Android

freerasp-react-native.podspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ Pod::Spec.new do |s|
1414
s.platforms = { :ios => "11.0" }
1515
s.source = { :git => "https://github.com/talsec/freerasp-react-native.git", :tag => "#{s.version}" }
1616

17-
s.source_files = "ios/**/*.{h,m,mm,swift}"
17+
s.source_files = 'ios/*.{h,m,mm,swift}', 'ios/TalsecRuntime.xcframework'
18+
s.xcconfig = { 'OTHER_LDFLAGS' => '-framework TalsecRuntime' }
1819
s.ios.vendored_frameworks = "ios/TalsecRuntime.xcframework"
1920

2021
s.dependency "React-Core"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "freerasp-react-native",
3-
"version": "3.3.0",
3+
"version": "3.3.1",
44
"description": "React Native plugin for improving app security and threat monitoring on Android and iOS mobile devices.",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",

0 commit comments

Comments
 (0)