Skip to content

Commit

Permalink
Merge pull request #41 from qonversion/release/1.2.0
Browse files Browse the repository at this point in the history
Add kochava device id as custom property
  • Loading branch information
smejl authored Jul 3, 2020
2 parents 6c2cf96 + c23802e commit 1fc0f11
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Qonversion.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Qonversion'
s.version = '1.1.2'
s.version = '1.2.0'
s.summary = 'qonversion.io'
s.description = <<-DESC
Deep Analytics for iOS Subscriptions
Expand Down
4 changes: 2 additions & 2 deletions Qonversion.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.1.2;
MARKETING_VERSION = 1.2.0;
MODULEMAP_FILE = Framework/Qonversion.modulemap;
PRODUCT_BUNDLE_IDENTIFIER = com.qonversion.Qonversion;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
Expand Down Expand Up @@ -766,7 +766,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.1.2;
MARKETING_VERSION = 1.2.0;
MODULEMAP_FILE = Framework/Qonversion.modulemap;
PRODUCT_BUNDLE_IDENTIFIER = com.qonversion.Qonversion;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
Expand Down
3 changes: 2 additions & 1 deletion Sources/QConstants.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ extern int const kQPropertiesSendingPeriodInSeconds;
typedef NS_ENUM(NSInteger, QProperty) {
QPropertyEmail = 0,
QPropertyName,
QPropertyPremium
QPropertyPremium,
QPropertyKochavaDeviceID
};

// MARK: - Qonversion Underhood User Properties
Expand Down
2 changes: 1 addition & 1 deletion Sources/QConstants.m
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
NSString *const keyQPlatform = @"iOS";
NSString *const keyQOSName = @"ios";

NSString *const keyQVersion = @"1.1.2";
NSString *const keyQVersion = @"1.2.0";
NSString *const keyQUnknownLibrary = @"unknown";
NSString *const keyQUnknownVersion = @"unknown";
NSString *const keyQInternalUserID = @"keyQInternalUserID";
Expand Down
3 changes: 3 additions & 0 deletions Sources/QonversionProperties.m
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ + (nullable NSString *)keyForProperty:(QProperty) property {
case QPropertyPremium:
key = @"_q_premium";
break;
case QPropertyKochavaDeviceID:
key = @"_q_kochava_device_id";
break;
}

return key;
Expand Down

0 comments on commit 1fc0f11

Please sign in to comment.