Skip to content

Commit

Permalink
CircleCI update SpotIMCore.xcframework to version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ios-dev-openweb committed Dec 28, 2023
1 parent c9f9dc9 commit fd1694d
Show file tree
Hide file tree
Showing 53 changed files with 328,379 additions and 244,724 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This library provides an easy integration with Spot.IM into a native iOS app.

#### Using [CocoaPods](https://cocoapods.org)
1. Set dependency as follows:
`pod 'SpotIMCore', '1.18.5'`
`pod 'SpotIMCore', '2.0.0'`
2. Execute `pod install` in Terminal
3. Open workspace file and run

Expand All @@ -22,7 +22,7 @@ The Swift Package Manager is a tool for automating the distribution of Swift cod
Once you have your Swift package set up, adding SpotIM as a dependency is as easy as adding it to the dependencies value of your Package.swift.
```
dependencies: [
.package(url: "https://github.com/SpotIM/spotim-ios-sdk-pod.git", .upToNextMajor(from: "1.18.5"))
.package(url: "https://github.com/SpotIM/spotim-ios-sdk-pod.git", .upToNextMajor(from: "2.0.0"))
]
```

Expand Down
2 changes: 1 addition & 1 deletion SpotIMCore.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'SpotIMCore'
s.version = '1.18.5'
s.version = '2.0.0'
s.swift_versions = ['5.0']
s.summary = 'OpenWeb SDK'
s.description = 'This SDK allows you to integrate OpenWeb into your iOS app.'
Expand Down
6 changes: 4 additions & 2 deletions SpotImCore.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<key>AvailableLibraries</key>
<array>
<dict>
<key>BitcodeSymbolMapsPath</key>
<string>BCSymbolMaps</string>
<key>BinaryPath</key>
<string>SpotImCore.framework/SpotImCore</string>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
Expand All @@ -21,6 +21,8 @@
<string>ios</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>SpotImCore.framework/SpotImCore</string>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
Expand Down

This file was deleted.

Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#if 0
#elif defined(__arm64__) && __arm64__
// Generated by Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100)
// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
#ifndef SPOTIMCORE_SWIFT_H
#define SPOTIMCORE_SWIFT_H
#pragma clang diagnostic push
Expand Down Expand Up @@ -42,12 +42,18 @@
#include <string.h>
#endif
#if defined(__cplusplus)
#if __has_include(<ptrauth.h>)
#if defined(__arm64e__) && __has_include(<ptrauth.h>)
# include <ptrauth.h>
#else
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wreserved-macro-identifier"
# ifndef __ptrauth_swift_value_witness_function_pointer
# define __ptrauth_swift_value_witness_function_pointer(x)
# endif
# ifndef __ptrauth_swift_class_method_pointer
# define __ptrauth_swift_class_method_pointer(x)
# endif
#pragma clang diagnostic pop
#endif
#endif

Expand Down Expand Up @@ -246,6 +252,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#else
# define SWIFT_NOEXCEPT
#endif
#if !defined(SWIFT_C_INLINE_THUNK)
# if __has_attribute(always_inline)
# if __has_attribute(nodebug)
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug))
# else
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline))
# endif
# else
# define SWIFT_C_INLINE_THUNK inline
# endif
#endif
#if defined(_WIN32)
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
Expand All @@ -260,8 +277,6 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
#endif
@import CoreFoundation;
@import UIKit;
#endif

#endif
Expand Down Expand Up @@ -296,35 +311,12 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));



@class NSCoder;

SWIFT_CLASS("_TtC10SpotImCore12OWBaseButton")
@interface OWBaseButton : UIButton
- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE;
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("Loading this view from a nib is unsupported in this project");
@end


SWIFT_CLASS("_TtC10SpotImCore11OWBaseLabel")
@interface OWBaseLabel : UILabel
- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE;
- (void)drawTextInRect:(CGRect)rect;
@property (nonatomic, readonly) CGSize intrinsicContentSize;
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("Loading this view from a nib is unsupported in this project");
@end


SWIFT_CLASS("_TtC10SpotImCore10OWBaseView")
@interface OWBaseView : UIView
- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE;
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("Loading this view from a nib is unsupported in this project");
@end



SWIFT_CLASS("_TtC10SpotImCore20SPShowCommentsButton")
@interface SPShowCommentsButton : OWBaseButton
@end



Expand Down Expand Up @@ -363,18 +355,12 @@ SWIFT_CLASS("_TtC10SpotImCore20SPShowCommentsButton")









#endif
#if defined(__cplusplus)
#endif
#if __has_attribute(external_source_symbol)
# pragma clang attribute pop
#endif
#if defined(__cplusplus)
#endif
#pragma clang diagnostic pop
#endif

Expand Down
Binary file not shown.
Loading

0 comments on commit fd1694d

Please sign in to comment.