fix: compilable Config setup, tested ScreenTimeCore package, CI, README from code - #1
Open
bluzername wants to merge 1 commit into
Open
bluzername wants to merge 1 commit into
bluzername wants to merge 1 commit into
Conversation
…ME from code - Both Xcode projects compiled Config.swift and Config-Template.swift, two definitions of enum Config; the template is no longer a build source - Config.swift is per-developer: removed from HEAD and gitignored, copy from Config-Template.swift (README documents it) - ios-parent/Package.swift pointed at a test target path that did not exist; it now defines ScreenTimeCore (Models + Validators, Foundation only) with an XCTest suite so swift build and swift test work without Xcode - Remove session artifacts: COMPLETION_SUMMARY.md, PROJECT_SUMMARY.md, docs/WEEK_1-3_*.md - Dependabot (swift, gradle x2, github-actions) and CI (swift build/test on macOS, typecheck of both Config templates) - README rewritten: documents the Android ports, the untracked Config.swift flow and the known supabase-swift Realtime API mismatch in the parent app - Replace yourusername placeholders with the real repository URL
bluzername
changed the base branch from
claude/parental-control-app-mvp-01FNBERWPGLVyjyNpsthbRRD
to
main
September 17, 2026 17:00
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changed
enum Configremoved from both Xcode projects.ScreenTimeParent.xcodeprojandScreenTimeChild.xcodeprojboth listedConfig.swiftandConfig-Template.swiftas compile sources, so neither app could build. The template stays in the project group but is no longer a build source.Config.swiftis now per-developer: removed from HEAD (it contained only placeholders) and git-ignored;cp Config-Template.swift Config.swiftdocumented in the README.ios-parent/Package.swiftfixed. It declared aScreenTimeParentTeststarget at a path that did not exist. It now definesScreenTimeCore(the Foundation-onlyShared/ModelsandValidators.swift) with a real XCTest suite inios-parent/Tests/ScreenTimeCoreTests(13 tests: email, password, name, invite code, sanitizer).COMPLETION_SUMMARY.md,PROJECT_SUMMARY.md,docs/WEEK_1-3_COMPLETION_SUMMARY.md,docs/WEEK_1-3_IMPROVEMENTS.md..github/dependabot.yml(swift, gradle for both Android apps, github-actions, weekly) and.github/workflows/ci.yml(swift build+swift teston macOS, plusswiftc -typecheckof both Config templates).yourusernameplaceholder URLs replaced indocs/GETTING_STARTED.md,ios-parent/README.md,ios-child/README.md.Verified
cd ios-parent && swift build: Build complete.cd ios-parent && swift test: Executed 13 tests, 0 failures.xcrun swiftc -typecheckon bothConfig-Template.swiftfiles: ok.xcodebuild -scheme ScreenTimeParent -destination 'generic/platform=iOS Simulator' CODE_SIGNING_ALLOWED=NO build: BUILD FAILED, 16 errors, all inShared/Networking/{AuthRepository,SupabaseClient,RealtimeManager}.swift. The duplicate-Config errors are gone; what remains is pre-existing: the code targets an older supabase-swift Realtime API (RealtimeChannel.postgresChange,RealtimeClient.removeChannel) while the project resolves supabase-swift 2.55 (from: "2.0.0").Skipped
RealtimeManagertoRealtimeChannelV2or pinning supabase-swift to the minor it was written for (L). Realtime is off by default (polling), but the app still needs this to compile. The README's Known issues section records it.