Skip to content

Commit

Permalink
Release 0.10.1 (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
apsis-rostov-ci authored Jul 18, 2022
1 parent fdbc912 commit 1c400da
Show file tree
Hide file tree
Showing 17 changed files with 762 additions and 29 deletions.
2 changes: 1 addition & 1 deletion ApsisOne.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'ApsisOne'
spec.version = '0.9.2'
spec.version = '0.10.1'
spec.summary = 'AppTool iOS SDK'
spec.homepage = 'http://apsis.one'
spec.license = { :type => 'Custom', :file => 'LICENSE' }
Expand Down
10 changes: 5 additions & 5 deletions ApsisOne.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,30 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>ApsisOne.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>ApsisOne.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file modified ApsisOne.xcframework/ios-arm64/ApsisOne.framework/ApsisOne
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#import <ApsisOne/ONEConsentType.h>
#import <ApsisOne/ONEPlacemark.h>
#import <ApsisOne/ONELocationFrequency.h>
#import <UIKit/UIView.h>

NS_ASSUME_NONNULL_BEGIN

Expand Down Expand Up @@ -97,14 +98,31 @@ NS_ASSUME_NONNULL_BEGIN
* Start collecting location with frrquency
*
* @param frequency ONELocationFrequency type
*/
*/
+ (void)startCollectingLocation:(ONELocationFrequency)frequency;

/**
* Stop collecting location
*/
*/
+ (void)stopCollectingLocation;

/**
* Synchronously makes a proxy view, which will load contextual message by provided discriminator
*
* @param messageId The discriminator of desired contextual message view.
* @return returns the placeholder view which will try to load the contextual message.
*/
+ (UIView *)contextualMessageViewWithId:(NSString *)messageId;

/**
* Asynchronously load contextual message by provided discriminator
*
* @param messageId The discriminator of desired contextual message view.
* @param onFinishHandler A block object to be executed when view building finished. This block takes a single UIView argument that contains contextual message view. This parameter may be NULL.
*/
+ (void)loadContextualMessageViewWithId:(NSString *)messageId
onFinish:(void(^)(UIView * _Nullable))onFinishHandler;

@end

NS_ASSUME_NONNULL_END
Binary file modified ApsisOne.xcframework/ios-arm64/ApsisOne.framework/Info.plist
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ import Swift
import SwiftUI
import _Concurrency
@available(iOS 13.0, *)
public struct ONEContextualMessageSwiftUIView : SwiftUI.View {
public typealias ViewTapHandler = ((Swift.String) -> ())
public init(messageId: Swift.String, onViewTap: ApsisOne.ONEContextualMessageSwiftUIView.ViewTapHandler? = nil)
@_Concurrency.MainActor(unsafe) public var body: some SwiftUI.View {
get
}
public typealias Body = @_opaqueReturnTypeOf("$s8ApsisOne31ONEContextualMessageSwiftUIViewV4bodyQrvp", 0) __
}
@available(iOS 13.0, *)
extension SwiftUI.View {
public func trackView(viewName: Swift.String, viewClass: Swift.String = "View") -> some SwiftUI.View

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ import Swift
import SwiftUI
import _Concurrency
@available(iOS 13.0, *)
public struct ONEContextualMessageSwiftUIView : SwiftUI.View {
public typealias ViewTapHandler = ((Swift.String) -> ())
public init(messageId: Swift.String, onViewTap: ApsisOne.ONEContextualMessageSwiftUIView.ViewTapHandler? = nil)
@_Concurrency.MainActor(unsafe) public var body: some SwiftUI.View {
get
}
public typealias Body = @_opaqueReturnTypeOf("$s8ApsisOne31ONEContextualMessageSwiftUIViewV4bodyQrvp", 0) __
}
@available(iOS 13.0, *)
extension SwiftUI.View {
public func trackView(viewName: Swift.String, viewClass: Swift.String = "View") -> some SwiftUI.View

Expand Down
Loading

0 comments on commit 1c400da

Please sign in to comment.