Skip to content

Commit

Permalink
feat: Update to Braze 9.x.x SDK, improve privacy manifest support
Browse files Browse the repository at this point in the history
  • Loading branch information
einsteinx2 committed Apr 30, 2024
1 parent 0eaca0e commit d74a09c
Show file tree
Hide file tree
Showing 6 changed files with 85 additions and 27 deletions.
10 changes: 6 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ let package = Package(
dependencies: [
.package(name: "mParticle-Apple-SDK",
url: "https://github.com/mParticle/mparticle-apple-sdk",
.upToNextMajor(from: "8.0.0")),
.upToNextMajor(from: "8.19.0")),
.package(name: "braze-swift-sdk",
url: "https://github.com/braze-inc/braze-swift-sdk",
.upToNextMajor(from: "8.0.0")),
.upToNextMajor(from: "9.0.0")),
],
targets: [
.target(
Expand All @@ -31,7 +31,8 @@ let package = Package(
.product(name: "BrazeUI", package: "braze-swift-sdk", condition: .when(platforms: [.iOS])),
.product(name: "BrazeKit", package: "braze-swift-sdk"),
.product(name: "BrazeKitCompat", package: "braze-swift-sdk"),
]
],
resources: [.process("PrivacyInfo.xcprivacy")]
),
.target(
name: "mParticle-Appboy-NoLocation",
Expand All @@ -41,7 +42,8 @@ let package = Package(
.product(name: "BrazeKit", package: "braze-swift-sdk"),
.product(name: "BrazeKitCompat", package: "braze-swift-sdk"),
],
path: "SPM/mParticle-Appboy-NoLocation"
path: "SPM/mParticle-Appboy-NoLocation",
resources: [.process("PrivacyInfo.xcprivacy")]
)
]
)
64 changes: 57 additions & 7 deletions Sources/mParticle-Appboy/MPKitAppboy.m
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@
#endif
__weak static id<BrazeDelegate> urlDelegate = nil;
static Braze *brazeInstance = nil;
static id brazeLocationProvider = nil;
static NSSet<BRZTrackingProperty*> *brazeTrackingPropertyAllowList;

@interface MPKitAppboy() {
Braze *appboyInstance;
Expand Down Expand Up @@ -114,6 +116,19 @@ + (Braze *)brazeInstance {
return brazeInstance;
}

+ (void)setBrazeLocationProvider:(nonnull id)instance {
brazeLocationProvider = instance;
}

+ (void)setBrazeTrackingPropertyAllowList:(nonnull NSSet<BRZTrackingProperty*> *)allowList {
for (id property in allowList) {
if (![property isKindOfClass:[BRZTrackingProperty class]]) {
return;
}
}
brazeTrackingPropertyAllowList = allowList;
}

#pragma mark Private methods
- (NSString *)stringRepresentation:(id)value {
NSString *stringRepresentation = nil;
Expand Down Expand Up @@ -258,6 +273,25 @@ - (NSString *)advertisingIdentifierString {
return _advertiserId;
}

- (BOOL)isAppTrackingEnabled {
BOOL appTrackingEnabled = NO;
Class ATTrackingManager = NSClassFromString(@"ATTrackingManager");

if (ATTrackingManager) {
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wundeclared-selector"
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Warc-performSelector-leaks"
SEL selector = NSSelectorFromString(@"trackingAuthorizationStatus");
NSUInteger trackingAuthorizationStatus = (NSUInteger)[ATTrackingManager performSelector:selector];
appTrackingEnabled = (trackingAuthorizationStatus == 3); // ATTrackingManagerAuthorizationStatusAuthorized
#pragma clang diagnostic pop
#pragma clang diagnostic pop
}

return appTrackingEnabled;
}

#pragma mark MPKitInstanceProtocol methods
- (MPKitExecStatus *)didFinishLaunchingWithConfiguration:(NSDictionary *)configuration {

Expand Down Expand Up @@ -291,8 +325,6 @@ - (MPKitExecStatus *)didFinishLaunchingWithConfiguration:(NSDictionary *)configu
_started = NO;
}



execStatus = [[MPKitExecStatus alloc] initWithSDKCode:[[self class] kitCode] returnCode:MPKitReturnCodeSuccess];
return execStatus;
}
Expand All @@ -305,14 +337,24 @@ - (void)start {
if (!self->appboyInstance) {
NSDictionary *optionsDict = [self optionsDictionary];
BRZConfiguration *configuration = [[BRZConfiguration alloc] initWithApiKey:self.configuration[eabAPIKey] endpoint:optionsDict[ABKEndpointKey]];

[configuration.api addSDKMetadata:@[BRZSDKMetadata.mparticle]];
configuration.api.sdkFlavor = ((NSNumber *)optionsDict[ABKSDKFlavorKey]).intValue;
configuration.api.requestPolicy = ((NSNumber *)optionsDict[ABKRequestProcessingPolicyOptionKey]).intValue;
configuration.api.flushInterval = ((NSNumber *)optionsDict[ABKFlushIntervalOptionKey]).doubleValue;
NSNumber *flushIntervalOption = (NSNumber *)optionsDict[ABKFlushIntervalOptionKey] ?: @10; // If not set, use the default 10 seconds specified in Braze SDK header
configuration.api.flushInterval = flushIntervalOption.doubleValue < 1.0 ? 1.0 : flushIntervalOption.doubleValue; // Ensure value is above the minimum of 1.0 per run time warning from Braze SDK
configuration.api.trackingPropertyAllowList = brazeTrackingPropertyAllowList;

configuration.sessionTimeout = ((NSNumber *)optionsDict[ABKSessionTimeoutKey]).doubleValue;

configuration.triggerMinimumTimeInterval = ((NSNumber *)optionsDict[ABKMinimumTriggerTimeIntervalKey]).doubleValue;
configuration.location.automaticLocationCollection = optionsDict[ABKEnableAutomaticLocationCollectionKey];
[configuration.api addSDKMetadata:@[BRZSDKMetadata.mparticle]];
configuration.api.sdkFlavor = ((NSNumber *)optionsDict[ABKSDKFlavorKey]).intValue;

NSNumber *automaticLocationTrackingOption = (NSNumber *)optionsDict[ABKEnableAutomaticLocationCollectionKey];
if (automaticLocationTrackingOption != nil && automaticLocationTrackingOption.boolValue && brazeLocationProvider) {
configuration.location.automaticLocationCollection = YES;
configuration.location.brazeLocationProvider = brazeLocationProvider;
}

self->appboyInstance = [[Braze alloc] initWithConfiguration:configuration];
}

Expand All @@ -322,8 +364,8 @@ - (void)start {

if (self->collectIDFA) {
[self->appboyInstance setIdentifierForAdvertiser:[self advertisingIdentifierString]];
[self->appboyInstance setAdTrackingEnabled:[self isAdvertisingTrackingEnabled]];
}
[self->appboyInstance setAdTrackingEnabled:[self isAppTrackingEnabled]];

#if TARGET_OS_IOS
BrazeInAppMessageUI *inAppMessageUI = [[BrazeInAppMessageUI alloc] init];
Expand Down Expand Up @@ -994,6 +1036,14 @@ - (nonnull MPKitExecStatus *)userNotificationCenter:(nonnull UNUserNotificationC
}
#endif

- (MPKitExecStatus *)setATTStatus:(MPATTAuthorizationStatus)status withATTStatusTimestampMillis:(NSNumber *)attStatusTimestampMillis {
BOOL isEnabled = status == MPATTAuthorizationStatusAuthorized;
[appboyInstance setAdTrackingEnabled:isEnabled];
return [[MPKitExecStatus alloc] initWithSDKCode:@(MPKitInstanceAppboy) returnCode:MPKitReturnCodeSuccess];
}

#pragma mark Configuration Dictionary

- (NSMutableDictionary *)simplifiedDictionary:(NSDictionary *)originalDictionary {
__block NSMutableDictionary *transformedDictionary = [[NSMutableDictionary alloc] init];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,8 @@
<key>NSPrivacyTrackingDomains</key>
<array/>
<key>NSPrivacyCollectedDataTypes</key>
<array>
<dict/>
</array>
<array/>
<key>NSPrivacyAccessedAPITypes</key>
<array>
<dict/>
</array>
<array/>
</dict>
</plist>
10 changes: 9 additions & 1 deletion Sources/mParticle-Appboy/include/MPKitAppboy.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@
#import "mParticle_Apple_SDK-Swift.h"
#endif

#if defined(__has_include) && __has_include(<BrazeKit/BrazeKit-Swift.h>)
#import <BrazeKit/BrazeKit-Swift.h>
#else
#import BrazeKit-Swift.h
#endif


@interface MPKitAppboy : NSObject <MPKitProtocol>

@property (nonatomic, strong, nonnull) NSDictionary *configuration;
Expand All @@ -22,5 +29,6 @@
#endif
+ (void)setURLDelegate:(nonnull id)delegate;
+ (void)setBrazeInstance:(nonnull id)instance;

+ (void)setBrazeLocationProvider:(nonnull id)instance;
+ (void)setBrazeTrackingPropertyAllowList:(nonnull NSSet<BRZTrackingProperty*> *)allowList;
@end
16 changes: 9 additions & 7 deletions mParticle-Appboy.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,18 @@ Pod::Spec.new do |s|

s.ios.deployment_target = "12.0"
s.ios.source_files = 'Sources/**/*.{h,m,mm}'
s.ios.dependency 'mParticle-Apple-SDK', '~> 8.0'
s.ios.dependency 'BrazeKit', '~> 8.0'
s.ios.dependency 'BrazeKitCompat', '~> 8.0'
s.ios.dependency 'BrazeUI', '~> 8.0'
s.ios.resource_bundles = { 'mParticle-Appboy-Privacy' => ['Sources/mParticle-Appboy/PrivacyInfo.xcprivacy'] }
s.ios.dependency 'mParticle-Apple-SDK', '~> 8.19'
s.ios.dependency 'BrazeKit', '~> 9.0'
s.ios.dependency 'BrazeKitCompat', '~> 9.0'
s.ios.dependency 'BrazeUI', '~> 9.0'

s.tvos.deployment_target = "12.0"
s.tvos.source_files = 'Sources/**/*.{h,m,mm}'
s.tvos.dependency 'mParticle-Apple-SDK', '~> 8.0'
s.tvos.dependency 'BrazeKit', '~> 8.0'
s.tvos.dependency 'BrazeKitCompat', '~> 8.0'
s.tvos.resource_bundles = { 'mParticle-Appboy-Privacy' => ['Sources/mParticle-Appboy/PrivacyInfo.xcprivacy'] }
s.tvos.dependency 'mParticle-Apple-SDK', '~> 8.19'
s.tvos.dependency 'BrazeKit', '~> 9.0'
s.tvos.dependency 'BrazeKitCompat', '~> 9.0'


end
4 changes: 2 additions & 2 deletions mParticle-Appboy.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,6 @@
children = (
DB76F1C925D2E71D00CAB3EB /* mParticle-Appboy */,
DB76F1CE25D2E71D00CAB3EB /* Info.plist */,
D344232F2B960F44006CD046 /* PrivacyInfo.xcprivacy */,
);
path = Sources;
sourceTree = "<group>";
Expand All @@ -151,6 +150,7 @@
children = (
DB76F1CA25D2E71D00CAB3EB /* include */,
DB76F1CD25D2E71D00CAB3EB /* MPKitAppboy.m */,
D344232F2B960F44006CD046 /* PrivacyInfo.xcprivacy */,
);
path = "mParticle-Appboy";
sourceTree = "<group>";
Expand Down Expand Up @@ -921,7 +921,7 @@
repositoryURL = "https://github.com/braze-inc/braze-swift-sdk";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 6.0.0;
minimumVersion = 9.0.0;
};
};
/* End XCRemoteSwiftPackageReference section */
Expand Down

0 comments on commit d74a09c

Please sign in to comment.