Rebrand from Casera/MyCrib to honeyDue

Total rebrand across KMM project:
- Kotlin package: com.example.casera -> com.tt.honeyDue (dirs + declarations)
- Gradle: rootProject.name, namespace, applicationId
- Android: manifest, strings.xml (all languages), widget resources
- iOS: pbxproj bundle IDs, Info.plist, entitlements, xcconfig
- iOS directories: Casera/ -> HoneyDue/, CaseraTests/ -> HoneyDueTests/, etc.
- Swift source: all class/struct/enum renames
- Deep links: casera:// -> honeydue://, .casera -> .honeydue
- App icons replaced with honeyDue honeycomb icon
- Domains: casera.treytartt.com -> honeyDue.treytartt.com
- Bundle IDs: com.tt.casera -> com.tt.honeyDue
- Database table names preserved

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Trey t
2026-03-07 06:33:57 -06:00
parent 9c574c4343
commit 1e2adf7660
450 changed files with 1730 additions and 1788 deletions

View File

@@ -1,4 +1,4 @@
package com.example.casera
package com.tt.honeyDue
class JsPlatform: Platform {
override val name: String = "Web with Kotlin/JS"

View File

@@ -1,4 +1,4 @@
package com.example.casera.analytics
package com.tt.honeyDue.analytics
/**
* JS/Web implementation of PostHog Analytics.

View File

@@ -1,4 +1,4 @@
package com.example.casera.network
package com.tt.honeyDue.network
import io.ktor.client.*
import io.ktor.client.engine.js.*

View File

@@ -1,7 +1,7 @@
package com.example.casera.platform
package com.tt.honeyDue.platform
import androidx.compose.runtime.Composable
import com.example.casera.models.Contractor
import com.tt.honeyDue.models.Contractor
@Composable
actual fun ContractorImportHandler(

View File

@@ -1,7 +1,7 @@
package com.example.casera.platform
package com.tt.honeyDue.platform
import androidx.compose.runtime.Composable
import com.example.casera.models.Contractor
import com.tt.honeyDue.models.Contractor
@Composable
actual fun rememberShareContractor(): (Contractor) -> Unit {

View File

@@ -1,4 +1,4 @@
package com.example.casera.platform
package com.tt.honeyDue.platform
import androidx.compose.runtime.Composable
import androidx.compose.runtime.remember

View File

@@ -1,4 +1,4 @@
package com.example.casera.platform
package com.tt.honeyDue.platform
import androidx.compose.runtime.Composable
import androidx.compose.runtime.remember

View File

@@ -1,4 +1,4 @@
package com.casera.platform
package com.honeydue.platform
import androidx.compose.runtime.Composable

View File

@@ -1,7 +1,7 @@
package com.example.casera.platform
package com.tt.honeyDue.platform
import androidx.compose.runtime.Composable
import com.example.casera.ui.subscription.UpgradeScreen
import com.tt.honeyDue.ui.subscription.UpgradeScreen
@Composable
actual fun PlatformUpgradeScreen(

View File

@@ -1,7 +1,7 @@
package com.example.casera.platform
package com.tt.honeyDue.platform
import androidx.compose.runtime.Composable
import com.example.casera.models.JoinResidenceResponse
import com.tt.honeyDue.models.JoinResidenceResponse
/**
* JS implementation is a no-op - file imports are not supported on web.

View File

@@ -1,8 +1,8 @@
package com.example.casera.platform
package com.tt.honeyDue.platform
import androidx.compose.runtime.Composable
import androidx.compose.runtime.remember
import com.example.casera.models.Residence
import com.tt.honeyDue.models.Residence
/**
* JS implementation is a no-op - sharing is not supported on web.

View File

@@ -1,4 +1,4 @@
package com.example.casera.ui.components.auth
package com.tt.honeyDue.ui.components.auth
import androidx.compose.runtime.Composable