Răsfoiți Sursa

Update bundle identifier to com.app-for-reddit across the app and StoreKit config.

Co-authored-by: Cursor <cursoragent@cursor.com>
AhtashamShahzad1 3 săptămâni în urmă
părinte
comite
beffd94f44

+ 2 - 2
Reddit App.xcodeproj/project.pbxproj

@@ -264,7 +264,7 @@
 				);
 				MACOSX_DEPLOYMENT_TARGET = 14.4;
 				MARKETING_VERSION = 1.0;
-				PRODUCT_BUNDLE_IDENTIFIER = com.reddora.app;
+				PRODUCT_BUNDLE_IDENTIFIER = com.app-for-reddit;
 				PRODUCT_NAME = "$(TARGET_NAME)";
 				REGISTER_APP_GROUPS = YES;
 				STRING_CATALOG_GENERATE_SYMBOLS = YES;
@@ -297,7 +297,7 @@
 				);
 				MACOSX_DEPLOYMENT_TARGET = 14.4;
 				MARKETING_VERSION = 1.0;
-				PRODUCT_BUNDLE_IDENTIFIER = com.reddora.app;
+				PRODUCT_BUNDLE_IDENTIFIER = com.app-for-reddit;
 				PRODUCT_NAME = "$(TARGET_NAME)";
 				REGISTER_APP_GROUPS = YES;
 				STRING_CATALOG_GENERATE_SYMBOLS = YES;

+ 1 - 1
Reddit App/Managers/AIHistoryManager.swift

@@ -10,7 +10,7 @@ final class AIHistoryManager {
     private let defaults: UserDefaults
     private let storageKey = "reddora.ai.history.entries"
     private let maxEntries = 30
-    private let persistQueue = DispatchQueue(label: "com.reddora.ai-history.persist", qos: .utility)
+    private let persistQueue = DispatchQueue(label: "com.app-for-reddit.ai-history.persist", qos: .utility)
 
     init(defaults: UserDefaults = .standard) {
         self.defaults = defaults

+ 3 - 3
Reddit App/Paywall.storekit

@@ -15,7 +15,7 @@
           "locale" : "en_US"
         }
       ],
-      "productID" : "com.reddora.pro.lifetime",
+      "productID" : "com.app-for-reddit.pro.lifetime",
       "referenceName" : "Lifetime",
       "type" : "NonConsumable"
     }
@@ -99,7 +99,7 @@
               "locale" : "en_US"
             }
           ],
-          "productID" : "com.reddora.pro.monthly",
+          "productID" : "com.app-for-reddit.pro.monthly",
           "recurringSubscriptionPeriod" : "P1M",
           "referenceName" : "Monthly",
           "subscriptionGroupID" : "21643201",
@@ -132,7 +132,7 @@
               "locale" : "en_US"
             }
           ],
-          "productID" : "com.reddora.pro.yearly",
+          "productID" : "com.app-for-reddit.pro.yearly",
           "recurringSubscriptionPeriod" : "P1Y",
           "referenceName" : "Yearly",
           "subscriptionGroupID" : "21643201",

+ 3 - 3
Reddit App/Utilities/SubscriptionProductID.swift

@@ -1,9 +1,9 @@
 import Foundation
 
 enum SubscriptionProductID {
-    static let monthly = "com.reddora.pro.monthly"
-    static let yearly = "com.reddora.pro.yearly"
-    static let lifetime = "com.reddora.pro.lifetime"
+    static let monthly = "com.app-for-reddit.pro.monthly"
+    static let yearly = "com.app-for-reddit.pro.yearly"
+    static let lifetime = "com.app-for-reddit.pro.lifetime"
 
     static let all: Set<String> = [monthly, yearly, lifetime]