diff --git a/Examples/SwiftExample/Configuration.storekit b/Examples/SwiftExample/Configuration.storekit index d7066945df..5b23ad4abd 100644 --- a/Examples/SwiftExample/Configuration.storekit +++ b/Examples/SwiftExample/Configuration.storekit @@ -31,7 +31,7 @@ "adHocOffers" : [ ], - "displayPrice" : "8.99", + "displayPrice" : "4.99", "familyShareable" : true, "groupNumber" : 1, "internalID" : "E5E51B92", @@ -47,7 +47,7 @@ "locale" : "en_US" } ], - "productID" : "monthly_freetrial", + "productID" : "com.revenuecat.monthly_4.99.1_week_intro", "recurringSubscriptionPeriod" : "P1M", "referenceName" : "monthly free trial", "subscriptionGroupID" : "7096FF06", @@ -57,7 +57,7 @@ "adHocOffers" : [ ], - "displayPrice" : "6.99", + "displayPrice" : "39.99", "familyShareable" : true, "groupNumber" : 1, "internalID" : "F04B58DC", @@ -73,7 +73,7 @@ "locale" : "en_US" } ], - "productID" : "annual_freetrial", + "productID" : "com.revenuecat.annual_39.99.2_week_intro", "recurringSubscriptionPeriod" : "P1Y", "referenceName" : "annual free trial", "subscriptionGroupID" : "7096FF06", diff --git a/Examples/SwiftExample/SwiftExample.xcodeproj/xcshareddata/xcschemes/WatchExample.xcscheme b/Examples/SwiftExample/SwiftExample.xcodeproj/xcshareddata/xcschemes/WatchExample.xcscheme new file mode 100644 index 0000000000..47e14a8d6b --- /dev/null +++ b/Examples/SwiftExample/SwiftExample.xcodeproj/xcshareddata/xcschemes/WatchExample.xcscheme @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Purchases/Purchasing/RCIdentityManager.m b/Purchases/Purchasing/RCIdentityManager.m index 9ab528c2e6..31e351404d 100644 --- a/Purchases/Purchasing/RCIdentityManager.m +++ b/Purchases/Purchasing/RCIdentityManager.m @@ -73,7 +73,7 @@ - (void)createAlias:(NSString *)alias withCompletionBlock:(void (^)(NSError *_Nu completion(RCPurchasesErrorUtils.missingAppUserIDError); return; } - RCDebugLog(@"Creating an alias to %@ from %@", currentAppUserID, alias); + RCDebugLog(@"Creating an alias from %@ to %@", currentAppUserID, alias); [self.backend createAliasForAppUserID:currentAppUserID withNewAppUserID:alias completion:^(NSError *_Nullable error) { if (error == nil) { RCDebugLog(@"Alias created");