-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #67 from qonversion/release/2.2.0
Release/2.2.0
- Loading branch information
Showing
61 changed files
with
407 additions
and
267 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#import <Qonversion/Qonversion.h> | ||
|
||
#import <Qonversion/QNLaunchResult.h> | ||
#import <Qonversion/QNPermission.h> | ||
#import <Qonversion/QNProduct.h> | ||
#import <Qonversion/QNStoreKitSugare.h> | ||
#import <Qonversion/QNConstants.h> | ||
#import <Qonversion/QNErrors.h> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
framework module Qonversion { | ||
header "Qonversion.h" | ||
header "QNLaunchResult.h" | ||
header "QNPermission.h" | ||
header "QNProduct.h" | ||
|
||
export * | ||
framework module Qonverison { | ||
umbrella header "QonverisonFramework.h" | ||
|
||
export * | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// swift-tools-version:5.1 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "Qonversion", | ||
products: [ | ||
.library( | ||
name: "Qonversion", | ||
targets: ["Qonversion"]), | ||
], | ||
targets: [ | ||
.target( | ||
name: "Qonversion", | ||
exclude: [], | ||
publicHeadersPath: "."), | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'Qonversion' | ||
s.version = '2.1.0' | ||
s.version = '2.2.0' | ||
s.summary = 'qonversion.io' | ||
s.description = <<-DESC | ||
Deep Analytics for iOS Subscriptions | ||
Qonversion is the data platform to power in-app subscription revenue growth. Qonversion allows fast in-app subscriptions implementation. It provides the back-end infrastructure to validate user receipts and manage cross-platform user access to paid content on your app, so you do not need to build your own server. Qonversion also provides comprehensive subscription analytics and out-of-the-box integrations with the leading marketing, attribution, and product analytics platforms. | ||
DESC | ||
DESC | ||
s.homepage = 'https://github.com/qonversion/qonversion-ios-sdk' | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { 'Qonversion Inc.' => '[email protected]' } | ||
s.source_files = 'Sources/Qonversion/*.{h,m}' | ||
s.source = { :git => 'https://github.com/qonversion/qonversion-ios-sdk.git', :tag => s.version.to_s } | ||
s.ios.deployment_target = '9.0' | ||
s.source_files = 'Sources/**/*' | ||
|
||
s.requires_arc = true | ||
end |
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
Qonversion.xcodeproj/xcshareddata/xcschemes/Qonversion.xcscheme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
3 changes: 2 additions & 1 deletion
3
Sources/Network/QNAPIClient.h → Sources/Qonversion/QNAPIClient.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
Sources/Managers/QNAttributionManager.h → Sources/Qonversion/QNAttributionManager.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
#import <Foundation/Foundation.h> | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface QNKeeper : NSObject | ||
|
||
+ (nullable NSString *)userID; | ||
+ (void)setUserID:(NSString *)userID; | ||
|
||
@end | ||
|
||
|
||
NS_ASSUME_NONNULL_END |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.