Rebrand from MyCrib to Casera
- Rename Kotlin package from com.example.mycrib to com.example.casera - Update Android app name, namespace, and application ID - Update iOS bundle identifiers and project settings - Rename iOS directories (MyCribTests -> CaseraTests, etc.) - Update deep link schemes from mycrib:// to casera:// - Update app group identifiers - Update subscription product IDs - Update all UI strings and branding 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
//
|
||||
// AppIntent.swift
|
||||
// MyCrib
|
||||
// Casera
|
||||
//
|
||||
// Created by Trey Tartt on 11/5/25.
|
||||
//
|
||||
18
iosApp/Casera/CaseraBundle.swift
Normal file
18
iosApp/Casera/CaseraBundle.swift
Normal file
@@ -0,0 +1,18 @@
|
||||
//
|
||||
// CaseraBundle.swift
|
||||
// Casera
|
||||
//
|
||||
// Created by Trey Tartt on 11/5/25.
|
||||
//
|
||||
|
||||
import WidgetKit
|
||||
import SwiftUI
|
||||
|
||||
@main
|
||||
struct CaseraBundle: WidgetBundle {
|
||||
var body: some Widget {
|
||||
Casera()
|
||||
CaseraControl()
|
||||
CaseraLiveActivity()
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
//
|
||||
// MyCribControl.swift
|
||||
// MyCrib
|
||||
// CaseraControl.swift
|
||||
// Casera
|
||||
//
|
||||
// Created by Trey Tartt on 11/5/25.
|
||||
//
|
||||
@@ -9,8 +9,8 @@ import AppIntents
|
||||
import SwiftUI
|
||||
import WidgetKit
|
||||
|
||||
struct MyCribControl: ControlWidget {
|
||||
static let kind: String = "com.example.mycrib.MyCrib.MyCrib"
|
||||
struct CaseraControl: ControlWidget {
|
||||
static let kind: String = "com.example.casera.Casera.Casera"
|
||||
|
||||
var body: some ControlWidgetConfiguration {
|
||||
AppIntentControlConfiguration(
|
||||
@@ -30,7 +30,7 @@ struct MyCribControl: ControlWidget {
|
||||
}
|
||||
}
|
||||
|
||||
extension MyCribControl {
|
||||
extension CaseraControl {
|
||||
struct Value {
|
||||
var isRunning: Bool
|
||||
var name: String
|
||||
@@ -38,12 +38,12 @@ extension MyCribControl {
|
||||
|
||||
struct Provider: AppIntentControlValueProvider {
|
||||
func previewValue(configuration: TimerConfiguration) -> Value {
|
||||
MyCribControl.Value(isRunning: false, name: configuration.timerName)
|
||||
CaseraControl.Value(isRunning: false, name: configuration.timerName)
|
||||
}
|
||||
|
||||
func currentValue(configuration: TimerConfiguration) async throws -> Value {
|
||||
let isRunning = true // Check if the timer is running
|
||||
return MyCribControl.Value(isRunning: isRunning, name: configuration.timerName)
|
||||
return CaseraControl.Value(isRunning: isRunning, name: configuration.timerName)
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
//
|
||||
// MyCribLiveActivity.swift
|
||||
// MyCrib
|
||||
// CaseraLiveActivity.swift
|
||||
// Casera
|
||||
//
|
||||
// Created by Trey Tartt on 11/5/25.
|
||||
//
|
||||
@@ -9,7 +9,7 @@ import ActivityKit
|
||||
import WidgetKit
|
||||
import SwiftUI
|
||||
|
||||
struct MyCribAttributes: ActivityAttributes {
|
||||
struct CaseraAttributes: ActivityAttributes {
|
||||
public struct ContentState: Codable, Hashable {
|
||||
// Dynamic stateful properties about your activity go here!
|
||||
var emoji: String
|
||||
@@ -19,9 +19,9 @@ struct MyCribAttributes: ActivityAttributes {
|
||||
var name: String
|
||||
}
|
||||
|
||||
struct MyCribLiveActivity: Widget {
|
||||
struct CaseraLiveActivity: Widget {
|
||||
var body: some WidgetConfiguration {
|
||||
ActivityConfiguration(for: MyCribAttributes.self) { context in
|
||||
ActivityConfiguration(for: CaseraAttributes.self) { context in
|
||||
// Lock screen/banner UI goes here
|
||||
VStack {
|
||||
Text("Hello \(context.state.emoji)")
|
||||
@@ -56,25 +56,25 @@ struct MyCribLiveActivity: Widget {
|
||||
}
|
||||
}
|
||||
|
||||
extension MyCribAttributes {
|
||||
fileprivate static var preview: MyCribAttributes {
|
||||
MyCribAttributes(name: "World")
|
||||
extension CaseraAttributes {
|
||||
fileprivate static var preview: CaseraAttributes {
|
||||
CaseraAttributes(name: "World")
|
||||
}
|
||||
}
|
||||
|
||||
extension MyCribAttributes.ContentState {
|
||||
fileprivate static var smiley: MyCribAttributes.ContentState {
|
||||
MyCribAttributes.ContentState(emoji: "😀")
|
||||
extension CaseraAttributes.ContentState {
|
||||
fileprivate static var smiley: CaseraAttributes.ContentState {
|
||||
CaseraAttributes.ContentState(emoji: "😀")
|
||||
}
|
||||
|
||||
fileprivate static var starEyes: MyCribAttributes.ContentState {
|
||||
MyCribAttributes.ContentState(emoji: "🤩")
|
||||
fileprivate static var starEyes: CaseraAttributes.ContentState {
|
||||
CaseraAttributes.ContentState(emoji: "🤩")
|
||||
}
|
||||
}
|
||||
|
||||
#Preview("Notification", as: .content, using: MyCribAttributes.preview) {
|
||||
MyCribLiveActivity()
|
||||
#Preview("Notification", as: .content, using: CaseraAttributes.preview) {
|
||||
CaseraLiveActivity()
|
||||
} contentStates: {
|
||||
MyCribAttributes.ContentState.smiley
|
||||
MyCribAttributes.ContentState.starEyes
|
||||
CaseraAttributes.ContentState.smiley
|
||||
CaseraAttributes.ContentState.starEyes
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
//
|
||||
// MyCrib.swift
|
||||
// MyCrib
|
||||
// Casera.swift
|
||||
// Casera
|
||||
//
|
||||
// Created by Trey Tartt on 11/5/25.
|
||||
//
|
||||
@@ -30,7 +30,7 @@ class CacheManager {
|
||||
}
|
||||
}
|
||||
|
||||
private static let appGroupIdentifier = "group.com.tt.mycrib.MyCribDev"
|
||||
private static let appGroupIdentifier = "group.com.tt.casera.CaseraDev"
|
||||
private static let tasksFileName = "widget_tasks.json"
|
||||
|
||||
/// Get the shared App Group container URL
|
||||
@@ -138,7 +138,7 @@ struct SimpleEntry: TimelineEntry {
|
||||
}
|
||||
}
|
||||
|
||||
struct MyCribEntryView : View {
|
||||
struct CaseraEntryView : View {
|
||||
var entry: Provider.Entry
|
||||
@Environment(\.widgetFamily) var family
|
||||
|
||||
@@ -168,7 +168,7 @@ struct SmallWidgetView: View {
|
||||
.font(.system(size: 14, weight: .semibold))
|
||||
.foregroundStyle(.blue)
|
||||
|
||||
Text("MyCrib")
|
||||
Text("Casera")
|
||||
.font(.system(size: 14, weight: .bold))
|
||||
.foregroundStyle(.primary)
|
||||
|
||||
@@ -414,7 +414,7 @@ struct LargeWidgetView: View {
|
||||
.font(.system(size: 16, weight: .semibold))
|
||||
.foregroundStyle(.blue)
|
||||
|
||||
Text("MyCrib")
|
||||
Text("Casera")
|
||||
.font(.system(size: 16, weight: .bold))
|
||||
.foregroundStyle(.primary)
|
||||
|
||||
@@ -554,12 +554,12 @@ struct LargeTaskRowView: View {
|
||||
}
|
||||
}
|
||||
|
||||
struct MyCrib: Widget {
|
||||
let kind: String = "MyCrib"
|
||||
struct Casera: Widget {
|
||||
let kind: String = "Casera"
|
||||
|
||||
var body: some WidgetConfiguration {
|
||||
AppIntentConfiguration(kind: kind, intent: ConfigurationAppIntent.self, provider: Provider()) { entry in
|
||||
MyCribEntryView(entry: entry)
|
||||
CaseraEntryView(entry: entry)
|
||||
.containerBackground(.fill.tertiary, for: .widget)
|
||||
}
|
||||
}
|
||||
@@ -567,7 +567,7 @@ struct MyCrib: Widget {
|
||||
|
||||
// MARK: - Previews
|
||||
#Preview(as: .systemSmall) {
|
||||
MyCrib()
|
||||
Casera()
|
||||
} timeline: {
|
||||
SimpleEntry(
|
||||
date: .now,
|
||||
@@ -606,7 +606,7 @@ struct MyCrib: Widget {
|
||||
}
|
||||
|
||||
#Preview(as: .systemMedium) {
|
||||
MyCrib()
|
||||
Casera()
|
||||
} timeline: {
|
||||
SimpleEntry(
|
||||
date: .now,
|
||||
@@ -656,7 +656,7 @@ struct MyCrib: Widget {
|
||||
}
|
||||
|
||||
#Preview(as: .systemLarge) {
|
||||
MyCrib()
|
||||
Casera()
|
||||
} timeline: {
|
||||
SimpleEntry(
|
||||
date: .now,
|
||||
@@ -1,13 +1,13 @@
|
||||
//
|
||||
// MyCribTests.swift
|
||||
// MyCribTests
|
||||
// CaseraTests.swift
|
||||
// CaseraTests
|
||||
//
|
||||
// Created by Trey Tartt on 11/12/25.
|
||||
//
|
||||
|
||||
import Testing
|
||||
|
||||
struct MyCribTests {
|
||||
struct CaseraTests {
|
||||
|
||||
@Test func example() async throws {
|
||||
// Write your test here and use APIs like `#expect(...)` to check expected conditions.
|
||||
@@ -1,13 +1,13 @@
|
||||
//
|
||||
// MyCribUITests.swift
|
||||
// MyCribUITests
|
||||
// CaseraUITests.swift
|
||||
// CaseraUITests
|
||||
//
|
||||
// Created by Trey Tartt on 11/19/25.
|
||||
//
|
||||
|
||||
import XCTest
|
||||
|
||||
final class MyCribUITests: XCTestCase {
|
||||
final class CaseraUITests: XCTestCase {
|
||||
|
||||
override func setUpWithError() throws {
|
||||
// Put setup code here. This method is called before the invocation of each test method in the class.
|
||||
@@ -1,13 +1,13 @@
|
||||
//
|
||||
// MyCribUITestsLaunchTests.swift
|
||||
// MyCribUITests
|
||||
// CaseraUITestsLaunchTests.swift
|
||||
// CaseraUITests
|
||||
//
|
||||
// Created by Trey Tartt on 11/19/25.
|
||||
//
|
||||
|
||||
import XCTest
|
||||
|
||||
final class MyCribUITestsLaunchTests: XCTestCase {
|
||||
final class CaseraUITestsLaunchTests: XCTestCase {
|
||||
|
||||
override class var runsForEachTargetApplicationUIConfiguration: Bool {
|
||||
true
|
||||
@@ -79,10 +79,10 @@ final class RegistrationTests: XCTestCase {
|
||||
private let testVerificationCode = "123456"
|
||||
|
||||
/// Note: cleanupTestUser should be called from command line after tests complete
|
||||
/// Run: cd /Users/treyt/Desktop/code/MyCrib/myCribAPI && python manage.py shell -c "from django.contrib.auth import get_user_model; User = get_user_model(); User.objects.filter(email__startswith='test_').delete()"
|
||||
/// Run: cd /Users/treyt/Desktop/code/Casera/myCribAPI && python manage.py shell -c "from django.contrib.auth import get_user_model; User = get_user_model(); User.objects.filter(email__startswith='test_').delete()"
|
||||
private func cleanupTestUser(email: String) {
|
||||
print("Cleanup test user: \(email)")
|
||||
print("Run manually if needed: cd /Users/treyt/Desktop/code/MyCrib/myCribAPI && python manage.py shell -c \"from django.contrib.auth import get_user_model; User = get_user_model(); User.objects.filter(email='\(email)').delete()\"")
|
||||
print("Run manually if needed: cd /Users/treyt/Desktop/code/Casera/myCribAPI && python manage.py shell -c \"from django.contrib.auth import get_user_model; User = get_user_model(); User.objects.filter(email='\(email)').delete()\"")
|
||||
}
|
||||
|
||||
// MARK: - Registration Form Tests
|
||||
@@ -1,18 +0,0 @@
|
||||
//
|
||||
// MyCribBundle.swift
|
||||
// MyCrib
|
||||
//
|
||||
// Created by Trey Tartt on 11/5/25.
|
||||
//
|
||||
|
||||
import WidgetKit
|
||||
import SwiftUI
|
||||
|
||||
@main
|
||||
struct MyCribBundle: WidgetBundle {
|
||||
var body: some Widget {
|
||||
MyCrib()
|
||||
MyCribControl()
|
||||
MyCribLiveActivity()
|
||||
}
|
||||
}
|
||||
@@ -9,7 +9,7 @@
|
||||
/* Begin PBXBuildFile section */
|
||||
1C0789402EBC218B00392B46 /* WidgetKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C07893F2EBC218B00392B46 /* WidgetKit.framework */; };
|
||||
1C0789422EBC218B00392B46 /* SwiftUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C0789412EBC218B00392B46 /* SwiftUI.framework */; };
|
||||
1C0789532EBC218D00392B46 /* MyCribExtension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = 1C07893D2EBC218B00392B46 /* MyCribExtension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
|
||||
1C0789532EBC218D00392B46 /* CaseraExtension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = 1C07893D2EBC218B00392B46 /* CaseraExtension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
@@ -18,7 +18,7 @@
|
||||
containerPortal = 6A3E1D84F9F1A2FD92A75A6C /* Project object */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 1C07893C2EBC218B00392B46;
|
||||
remoteInfo = MyCribExtension;
|
||||
remoteInfo = CaseraExtension;
|
||||
};
|
||||
1CBF16002ECD8AE4001BF56C /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
@@ -43,7 +43,7 @@
|
||||
dstPath = "";
|
||||
dstSubfolderSpec = 13;
|
||||
files = (
|
||||
1C0789532EBC218D00392B46 /* MyCribExtension.appex in Embed Foundation Extensions */,
|
||||
1C0789532EBC218D00392B46 /* CaseraExtension.appex in Embed Foundation Extensions */,
|
||||
);
|
||||
name = "Embed Foundation Extensions";
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
@@ -51,45 +51,45 @@
|
||||
/* End PBXCopyFilesBuildPhase section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
1C07893D2EBC218B00392B46 /* MyCribExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = MyCribExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
1C07893D2EBC218B00392B46 /* CaseraExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = CaseraExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
1C07893F2EBC218B00392B46 /* WidgetKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WidgetKit.framework; path = System/Library/Frameworks/WidgetKit.framework; sourceTree = SDKROOT; };
|
||||
1C0789412EBC218B00392B46 /* SwiftUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftUI.framework; path = System/Library/Frameworks/SwiftUI.framework; sourceTree = SDKROOT; };
|
||||
1C0789612EBC2F5400392B46 /* MyCribExtension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = MyCribExtension.entitlements; sourceTree = "<group>"; };
|
||||
1C685CD22EC5539000A9669B /* MyCribTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MyCribTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
1CBF1BED2ECD9768001BF56C /* MyCribUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MyCribUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
1C0789612EBC2F5400392B46 /* CaseraExtension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = CaseraExtension.entitlements; sourceTree = "<group>"; };
|
||||
1C685CD22EC5539000A9669B /* CaseraTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CaseraTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
1CBF1BED2ECD9768001BF56C /* CaseraUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CaseraUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
4B07E04F794A4C1CAA8CCD5D /* PhotoViewerSheet.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PhotoViewerSheet.swift; sourceTree = "<group>"; };
|
||||
96A3DDC05E14B3F83E56282F /* MyCrib.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = MyCrib.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
AD6CD907CA1045CBBC845D91 /* CompletionCardView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CompletionCardView.swift; sourceTree = "<group>"; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFileSystemSynchronizedBuildFileExceptionSet section */
|
||||
1C0789572EBC218D00392B46 /* Exceptions for "MyCrib" folder in "MyCribExtension" target */ = {
|
||||
1C0789572EBC218D00392B46 /* Exceptions for "MyCrib" folder in "CaseraExtension" target */ = {
|
||||
isa = PBXFileSystemSynchronizedBuildFileExceptionSet;
|
||||
membershipExceptions = (
|
||||
Info.plist,
|
||||
);
|
||||
target = 1C07893C2EBC218B00392B46 /* MyCribExtension */;
|
||||
target = 1C07893C2EBC218B00392B46 /* CaseraExtension */;
|
||||
};
|
||||
1C77EDA12ECE784100A53003 /* Exceptions for "iosApp" folder in "MyCribUITests" target */ = {
|
||||
1C77EDA12ECE784100A53003 /* Exceptions for "iosApp" folder in "CaseraUITests" target */ = {
|
||||
isa = PBXFileSystemSynchronizedBuildFileExceptionSet;
|
||||
membershipExceptions = (
|
||||
Helpers/AccessibilityIdentifiers.swift,
|
||||
);
|
||||
target = 1CBF1BEC2ECD9768001BF56C /* MyCribUITests */;
|
||||
target = 1CBF1BEC2ECD9768001BF56C /* CaseraUITests */;
|
||||
};
|
||||
1C77EDA22ECE797700A53003 /* Exceptions for "MyCribUITests" folder in "MyCribUITests" target */ = {
|
||||
1C77EDA22ECE797700A53003 /* Exceptions for "CaseraUITests" folder in "CaseraUITests" target */ = {
|
||||
isa = PBXFileSystemSynchronizedBuildFileExceptionSet;
|
||||
membershipExceptions = (
|
||||
AccessibilityIdentifiers.swift,
|
||||
);
|
||||
target = 1CBF1BEC2ECD9768001BF56C /* MyCribUITests */;
|
||||
target = 1CBF1BEC2ECD9768001BF56C /* CaseraUITests */;
|
||||
};
|
||||
1CBF1C072ECD97AC001BF56C /* Exceptions for "MyCribTests" folder in "MyCribTests" target */ = {
|
||||
1CBF1C072ECD97AC001BF56C /* Exceptions for "CaseraTests" folder in "CaseraTests" target */ = {
|
||||
isa = PBXFileSystemSynchronizedBuildFileExceptionSet;
|
||||
membershipExceptions = (
|
||||
MyCribTests.swift,
|
||||
CaseraTests.swift,
|
||||
);
|
||||
target = 1C685CD12EC5539000A9669B /* MyCribTests */;
|
||||
target = 1C685CD12EC5539000A9669B /* CaseraTests */;
|
||||
};
|
||||
84D9B4B86A80D013B8CBB951 /* Exceptions for "iosApp" folder in "iosApp" target */ = {
|
||||
isa = PBXFileSystemSynchronizedBuildFileExceptionSet;
|
||||
@@ -104,25 +104,25 @@
|
||||
1C0789432EBC218B00392B46 /* MyCrib */ = {
|
||||
isa = PBXFileSystemSynchronizedRootGroup;
|
||||
exceptions = (
|
||||
1C0789572EBC218D00392B46 /* Exceptions for "MyCrib" folder in "MyCribExtension" target */,
|
||||
1C0789572EBC218D00392B46 /* Exceptions for "MyCrib" folder in "CaseraExtension" target */,
|
||||
);
|
||||
path = MyCrib;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1C685CD32EC5539000A9669B /* MyCribTests */ = {
|
||||
1C685CD32EC5539000A9669B /* CaseraTests */ = {
|
||||
isa = PBXFileSystemSynchronizedRootGroup;
|
||||
exceptions = (
|
||||
1CBF1C072ECD97AC001BF56C /* Exceptions for "MyCribTests" folder in "MyCribTests" target */,
|
||||
1CBF1C072ECD97AC001BF56C /* Exceptions for "CaseraTests" folder in "CaseraTests" target */,
|
||||
);
|
||||
path = MyCribTests;
|
||||
path = CaseraTests;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1CBF1BEE2ECD9768001BF56C /* MyCribUITests */ = {
|
||||
1CBF1BEE2ECD9768001BF56C /* CaseraUITests */ = {
|
||||
isa = PBXFileSystemSynchronizedRootGroup;
|
||||
exceptions = (
|
||||
1C77EDA22ECE797700A53003 /* Exceptions for "MyCribUITests" folder in "MyCribUITests" target */,
|
||||
1C77EDA22ECE797700A53003 /* Exceptions for "CaseraUITests" folder in "CaseraUITests" target */,
|
||||
);
|
||||
path = MyCribUITests;
|
||||
path = CaseraUITests;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
7A237E53D5D71D9D6A361E29 /* Configuration */ = {
|
||||
@@ -134,7 +134,7 @@
|
||||
isa = PBXFileSystemSynchronizedRootGroup;
|
||||
exceptions = (
|
||||
84D9B4B86A80D013B8CBB951 /* Exceptions for "iosApp" folder in "iosApp" target */,
|
||||
1C77EDA12ECE784100A53003 /* Exceptions for "iosApp" folder in "MyCribUITests" target */,
|
||||
1C77EDA12ECE784100A53003 /* Exceptions for "iosApp" folder in "CaseraUITests" target */,
|
||||
);
|
||||
path = iosApp;
|
||||
sourceTree = "<group>";
|
||||
@@ -196,12 +196,12 @@
|
||||
86BC7E88090398B44B7DB0E4 = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1C0789612EBC2F5400392B46 /* MyCribExtension.entitlements */,
|
||||
1C0789612EBC2F5400392B46 /* CaseraExtension.entitlements */,
|
||||
7A237E53D5D71D9D6A361E29 /* Configuration */,
|
||||
E822E6B231E7783DE992578C /* iosApp */,
|
||||
1C0789432EBC218B00392B46 /* MyCrib */,
|
||||
1C685CD32EC5539000A9669B /* MyCribTests */,
|
||||
1CBF1BEE2ECD9768001BF56C /* MyCribUITests */,
|
||||
1C685CD32EC5539000A9669B /* CaseraTests */,
|
||||
1CBF1BEE2ECD9768001BF56C /* CaseraUITests */,
|
||||
1C07893E2EBC218B00392B46 /* Frameworks */,
|
||||
FA6022B7B844191C54E57EB4 /* Products */,
|
||||
1C078A1B2EC1820B00392B46 /* Recovered References */,
|
||||
@@ -212,9 +212,9 @@
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
96A3DDC05E14B3F83E56282F /* MyCrib.app */,
|
||||
1C07893D2EBC218B00392B46 /* MyCribExtension.appex */,
|
||||
1C685CD22EC5539000A9669B /* MyCribTests.xctest */,
|
||||
1CBF1BED2ECD9768001BF56C /* MyCribUITests.xctest */,
|
||||
1C07893D2EBC218B00392B46 /* CaseraExtension.appex */,
|
||||
1C685CD22EC5539000A9669B /* CaseraTests.xctest */,
|
||||
1CBF1BED2ECD9768001BF56C /* CaseraUITests.xctest */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
@@ -222,9 +222,9 @@
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
1C07893C2EBC218B00392B46 /* MyCribExtension */ = {
|
||||
1C07893C2EBC218B00392B46 /* CaseraExtension */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 1C0789542EBC218D00392B46 /* Build configuration list for PBXNativeTarget "MyCribExtension" */;
|
||||
buildConfigurationList = 1C0789542EBC218D00392B46 /* Build configuration list for PBXNativeTarget "CaseraExtension" */;
|
||||
buildPhases = (
|
||||
1C0789392EBC218B00392B46 /* Sources */,
|
||||
1C07893A2EBC218B00392B46 /* Frameworks */,
|
||||
@@ -237,16 +237,16 @@
|
||||
fileSystemSynchronizedGroups = (
|
||||
1C0789432EBC218B00392B46 /* MyCrib */,
|
||||
);
|
||||
name = MyCribExtension;
|
||||
name = CaseraExtension;
|
||||
packageProductDependencies = (
|
||||
);
|
||||
productName = MyCribExtension;
|
||||
productReference = 1C07893D2EBC218B00392B46 /* MyCribExtension.appex */;
|
||||
productName = CaseraExtension;
|
||||
productReference = 1C07893D2EBC218B00392B46 /* CaseraExtension.appex */;
|
||||
productType = "com.apple.product-type.app-extension";
|
||||
};
|
||||
1C685CD12EC5539000A9669B /* MyCribTests */ = {
|
||||
1C685CD12EC5539000A9669B /* CaseraTests */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 1C685CD82EC5539000A9669B /* Build configuration list for PBXNativeTarget "MyCribTests" */;
|
||||
buildConfigurationList = 1C685CD82EC5539000A9669B /* Build configuration list for PBXNativeTarget "CaseraTests" */;
|
||||
buildPhases = (
|
||||
1C685CCE2EC5539000A9669B /* Sources */,
|
||||
1C685CCF2EC5539000A9669B /* Frameworks */,
|
||||
@@ -258,18 +258,18 @@
|
||||
1CBF16012ECD8AE4001BF56C /* PBXTargetDependency */,
|
||||
);
|
||||
fileSystemSynchronizedGroups = (
|
||||
1C685CD32EC5539000A9669B /* MyCribTests */,
|
||||
1C685CD32EC5539000A9669B /* CaseraTests */,
|
||||
);
|
||||
name = MyCribTests;
|
||||
name = CaseraTests;
|
||||
packageProductDependencies = (
|
||||
);
|
||||
productName = MyCribTests;
|
||||
productReference = 1C685CD22EC5539000A9669B /* MyCribTests.xctest */;
|
||||
productName = CaseraTests;
|
||||
productReference = 1C685CD22EC5539000A9669B /* CaseraTests.xctest */;
|
||||
productType = "com.apple.product-type.bundle.unit-test";
|
||||
};
|
||||
1CBF1BEC2ECD9768001BF56C /* MyCribUITests */ = {
|
||||
1CBF1BEC2ECD9768001BF56C /* CaseraUITests */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 1CBF1BF52ECD9768001BF56C /* Build configuration list for PBXNativeTarget "MyCribUITests" */;
|
||||
buildConfigurationList = 1CBF1BF52ECD9768001BF56C /* Build configuration list for PBXNativeTarget "CaseraUITests" */;
|
||||
buildPhases = (
|
||||
1CBF1BE92ECD9768001BF56C /* Sources */,
|
||||
1CBF1BEA2ECD9768001BF56C /* Frameworks */,
|
||||
@@ -281,13 +281,13 @@
|
||||
1CBF1BF42ECD9768001BF56C /* PBXTargetDependency */,
|
||||
);
|
||||
fileSystemSynchronizedGroups = (
|
||||
1CBF1BEE2ECD9768001BF56C /* MyCribUITests */,
|
||||
1CBF1BEE2ECD9768001BF56C /* CaseraUITests */,
|
||||
);
|
||||
name = MyCribUITests;
|
||||
name = CaseraUITests;
|
||||
packageProductDependencies = (
|
||||
);
|
||||
productName = MyCribUITests;
|
||||
productReference = 1CBF1BED2ECD9768001BF56C /* MyCribUITests.xctest */;
|
||||
productName = CaseraUITests;
|
||||
productReference = 1CBF1BED2ECD9768001BF56C /* CaseraUITests.xctest */;
|
||||
productType = "com.apple.product-type.bundle.ui-testing";
|
||||
};
|
||||
D4ADB376A7A4CFB73469E173 /* iosApp */ = {
|
||||
@@ -356,9 +356,9 @@
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
D4ADB376A7A4CFB73469E173 /* iosApp */,
|
||||
1C07893C2EBC218B00392B46 /* MyCribExtension */,
|
||||
1C685CD12EC5539000A9669B /* MyCribTests */,
|
||||
1CBF1BEC2ECD9768001BF56C /* MyCribUITests */,
|
||||
1C07893C2EBC218B00392B46 /* CaseraExtension */,
|
||||
1C685CD12EC5539000A9669B /* CaseraTests */,
|
||||
1CBF1BEC2ECD9768001BF56C /* CaseraUITests */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
@@ -450,7 +450,7 @@
|
||||
/* Begin PBXTargetDependency section */
|
||||
1C0789522EBC218D00392B46 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
target = 1C07893C2EBC218B00392B46 /* MyCribExtension */;
|
||||
target = 1C07893C2EBC218B00392B46 /* CaseraExtension */;
|
||||
targetProxy = 1C0789512EBC218D00392B46 /* PBXContainerItemProxy */;
|
||||
};
|
||||
1CBF16012ECD8AE4001BF56C /* PBXTargetDependency */ = {
|
||||
@@ -491,7 +491,7 @@
|
||||
"$(inherited)",
|
||||
"@executable_path/Frameworks",
|
||||
);
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.tt.mycrib.MyCribDev;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.tt.casera.CaseraDev;
|
||||
SWIFT_EMIT_LOC_STRINGS = YES;
|
||||
SWIFT_VERSION = 5.0;
|
||||
TARGETED_DEVICE_FAMILY = "1,2";
|
||||
@@ -503,7 +503,7 @@
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
||||
ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
|
||||
CODE_SIGN_ENTITLEMENTS = MyCribExtension.entitlements;
|
||||
CODE_SIGN_ENTITLEMENTS = CaseraExtension.entitlements;
|
||||
CODE_SIGN_IDENTITY = "Apple Development";
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = 1;
|
||||
@@ -520,7 +520,7 @@
|
||||
"@executable_path/../../Frameworks",
|
||||
);
|
||||
MARKETING_VERSION = 1.0;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.tt.mycrib.MyCribDev.MyCribDev;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.tt.casera.CaseraDev.CaseraDev;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SKIP_INSTALL = YES;
|
||||
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||
@@ -537,7 +537,7 @@
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
||||
ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
|
||||
CODE_SIGN_ENTITLEMENTS = MyCribExtension.entitlements;
|
||||
CODE_SIGN_ENTITLEMENTS = CaseraExtension.entitlements;
|
||||
CODE_SIGN_IDENTITY = "Apple Development";
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = 1;
|
||||
@@ -554,7 +554,7 @@
|
||||
"@executable_path/../../Frameworks",
|
||||
);
|
||||
MARKETING_VERSION = 1.0;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.tt.mycrib.MyCribDev.MyCribDev;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.tt.casera.CaseraDev.CaseraDev;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SKIP_INSTALL = YES;
|
||||
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||
@@ -577,7 +577,7 @@
|
||||
GENERATE_INFOPLIST_FILE = YES;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 26.1;
|
||||
MARKETING_VERSION = 1.0;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "com.t-t.MyCribTests";
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "com.t-t.CaseraTests";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
STRING_CATALOG_GENERATE_SYMBOLS = NO;
|
||||
SWIFT_APPROACHABLE_CONCURRENCY = YES;
|
||||
@@ -600,7 +600,7 @@
|
||||
GENERATE_INFOPLIST_FILE = YES;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 26.1;
|
||||
MARKETING_VERSION = 1.0;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "com.t-t.MyCribTests";
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "com.t-t.CaseraTests";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
STRING_CATALOG_GENERATE_SYMBOLS = NO;
|
||||
SWIFT_APPROACHABLE_CONCURRENCY = YES;
|
||||
@@ -623,7 +623,7 @@
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 26.1;
|
||||
MACOSX_DEPLOYMENT_TARGET = 26.1;
|
||||
MARKETING_VERSION = 1.0;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "com.t-t.MyCribUITests";
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "com.t-t.CaseraUITests";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = auto;
|
||||
STRING_CATALOG_GENERATE_SYMBOLS = NO;
|
||||
@@ -649,7 +649,7 @@
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 26.1;
|
||||
MACOSX_DEPLOYMENT_TARGET = 26.1;
|
||||
MARKETING_VERSION = 1.0;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "com.t-t.MyCribUITests";
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "com.t-t.CaseraUITests";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = auto;
|
||||
STRING_CATALOG_GENERATE_SYMBOLS = NO;
|
||||
@@ -812,7 +812,7 @@
|
||||
"$(inherited)",
|
||||
"@executable_path/Frameworks",
|
||||
);
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.tt.mycrib.MyCribDev;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.tt.casera.CaseraDev;
|
||||
SWIFT_EMIT_LOC_STRINGS = YES;
|
||||
SWIFT_VERSION = 5.0;
|
||||
TARGETED_DEVICE_FAMILY = "1,2";
|
||||
@@ -822,7 +822,7 @@
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
1C0789542EBC218D00392B46 /* Build configuration list for PBXNativeTarget "MyCribExtension" */ = {
|
||||
1C0789542EBC218D00392B46 /* Build configuration list for PBXNativeTarget "CaseraExtension" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
1C0789552EBC218D00392B46 /* Debug */,
|
||||
@@ -831,7 +831,7 @@
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
1C685CD82EC5539000A9669B /* Build configuration list for PBXNativeTarget "MyCribTests" */ = {
|
||||
1C685CD82EC5539000A9669B /* Build configuration list for PBXNativeTarget "CaseraTests" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
1C685CD92EC5539000A9669B /* Debug */,
|
||||
@@ -840,7 +840,7 @@
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
1CBF1BF52ECD9768001BF56C /* Build configuration list for PBXNativeTarget "MyCribUITests" */ = {
|
||||
1CBF1BF52ECD9768001BF56C /* Build configuration list for PBXNativeTarget "CaseraUITests" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
1CBF1BF62ECD9768001BF56C /* Debug */,
|
||||
|
||||
@@ -17,8 +17,8 @@
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "1C07893C2EBC218B00392B46"
|
||||
BuildableName = "MyCribExtension.appex"
|
||||
BlueprintName = "MyCribExtension"
|
||||
BuildableName = "CaseraExtension.appex"
|
||||
BlueprintName = "CaseraExtension"
|
||||
ReferencedContainer = "container:iosApp.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildActionEntry>
|
||||
@@ -31,7 +31,7 @@
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "D4ADB376A7A4CFB73469E173"
|
||||
BuildableName = "MyCrib.app"
|
||||
BuildableName = "Casera.app"
|
||||
BlueprintName = "iosApp"
|
||||
ReferencedContainer = "container:iosApp.xcodeproj">
|
||||
</BuildableReference>
|
||||
@@ -51,8 +51,8 @@
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "1CBF1BEC2ECD9768001BF56C"
|
||||
BuildableName = "MyCribUITests.xctest"
|
||||
BlueprintName = "MyCribUITests"
|
||||
BuildableName = "CaseraUITests.xctest"
|
||||
BlueprintName = "CaseraUITests"
|
||||
ReferencedContainer = "container:iosApp.xcodeproj">
|
||||
</BuildableReference>
|
||||
</TestableReference>
|
||||
@@ -75,7 +75,7 @@
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "D4ADB376A7A4CFB73469E173"
|
||||
BuildableName = "MyCrib.app"
|
||||
BuildableName = "Casera.app"
|
||||
BlueprintName = "iosApp"
|
||||
ReferencedContainer = "container:iosApp.xcodeproj">
|
||||
</BuildableReference>
|
||||
@@ -111,7 +111,7 @@
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "D4ADB376A7A4CFB73469E173"
|
||||
BuildableName = "MyCrib.app"
|
||||
BuildableName = "Casera.app"
|
||||
BlueprintName = "iosApp"
|
||||
ReferencedContainer = "container:iosApp.xcodeproj">
|
||||
</BuildableReference>
|
||||
@@ -20,8 +20,8 @@
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "1CBF1BEC2ECD9768001BF56C"
|
||||
BuildableName = "MyCribUITests.xctest"
|
||||
BlueprintName = "MyCribUITests"
|
||||
BuildableName = "CaseraUITests.xctest"
|
||||
BlueprintName = "CaseraUITests"
|
||||
ReferencedContainer = "container:iosApp.xcodeproj">
|
||||
</BuildableReference>
|
||||
</TestableReference>
|
||||
@@ -1,7 +1,7 @@
|
||||
import SwiftUI
|
||||
|
||||
// MARK: - Design System
|
||||
// Modern, sleek design system for MyCrib with Light and Dark mode support
|
||||
// Modern, sleek design system for Casera with Light and Dark mode support
|
||||
|
||||
// MARK: - Colors
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ import ComposeApp
|
||||
final class WidgetDataManager {
|
||||
static let shared = WidgetDataManager()
|
||||
|
||||
private let appGroupIdentifier = "group.com.tt.mycrib.MyCribDev"
|
||||
private let appGroupIdentifier = "group.com.tt.casera.CaseraDev"
|
||||
private let tasksFileName = "widget_tasks.json"
|
||||
|
||||
private init() {}
|
||||
|
||||
@@ -8,10 +8,10 @@
|
||||
<array>
|
||||
<dict>
|
||||
<key>CFBundleURLName</key>
|
||||
<string>com.mycrib.app</string>
|
||||
<string>com.casera.app</string>
|
||||
<key>CFBundleURLSchemes</key>
|
||||
<array>
|
||||
<string>mycrib</string>
|
||||
<string>casera</string>
|
||||
</array>
|
||||
</dict>
|
||||
</array>
|
||||
|
||||
@@ -142,7 +142,7 @@ struct ProfileTabView: View {
|
||||
|
||||
Section {
|
||||
VStack(alignment: .leading, spacing: 4) {
|
||||
Text("MyCrib")
|
||||
Text("Casera")
|
||||
.font(.caption)
|
||||
.fontWeight(.semibold)
|
||||
.foregroundColor(Color.appTextPrimary)
|
||||
|
||||
@@ -20,7 +20,7 @@ struct RegisterView: View {
|
||||
.font(.system(size: 60))
|
||||
.foregroundStyle(Color.appPrimary.gradient)
|
||||
|
||||
Text("Join MyCrib")
|
||||
Text("Join Casera")
|
||||
.font(.largeTitle)
|
||||
.fontWeight(.bold)
|
||||
|
||||
|
||||
@@ -9,8 +9,8 @@ class StoreKitManager: ObservableObject {
|
||||
|
||||
// Product IDs (must match App Store Connect and Configuration.storekit)
|
||||
private let productIDs = [
|
||||
"com.example.mycrib.pro.monthly",
|
||||
"com.example.mycrib.pro.annual"
|
||||
"com.example.casera.pro.monthly",
|
||||
"com.example.casera.pro.annual"
|
||||
]
|
||||
|
||||
@Published var products: [Product] = []
|
||||
|
||||
@@ -9,7 +9,7 @@ struct LoginHeader: View {
|
||||
.frame(width: 80, height: 80)
|
||||
.foregroundColor(Color.appPrimary)
|
||||
|
||||
Text("MyCrib")
|
||||
Text("Casera")
|
||||
.font(.largeTitle)
|
||||
.fontWeight(.bold)
|
||||
.foregroundColor(Color.appTextPrimary)
|
||||
|
||||
@@ -9,7 +9,7 @@ struct RegisterHeader: View {
|
||||
.frame(width: 64, height: 64)
|
||||
.foregroundColor(Color.appPrimary)
|
||||
|
||||
Text("Join MyCrib")
|
||||
Text("Join Casera")
|
||||
.font(.largeTitle)
|
||||
.fontWeight(.bold)
|
||||
.foregroundColor(Color.appTextPrimary)
|
||||
|
||||
@@ -26,8 +26,8 @@ struct iOSApp: App {
|
||||
private func handleDeepLink(url: URL) {
|
||||
print("Deep link received: \(url)")
|
||||
|
||||
// Handle mycrib://reset-password?token=xxx
|
||||
guard url.scheme == "mycrib",
|
||||
// Handle casera://reset-password?token=xxx
|
||||
guard url.scheme == "casera",
|
||||
url.host == "reset-password" else {
|
||||
print("Unrecognized deep link scheme or host")
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user