This repository was archived by the owner on Aug 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
Michael Fluharty edited this page Jul 8, 2026
·
1 revision
Build and run Memory Aid LockBox from source.
- Xcode 26 or later
- iOS / iPadOS 26 or macOS 26 (or later) to run
- An Apple Developer account for signing to a device and using iCloud
- iCloud enabled on your test devices (for sync)
The simplest way — no Terminal needed:
- Open Xcode.
- On the Welcome window, choose Clone Git Repository… (or Integrate → Clone… from the menu).
- Paste the repository URL:
https://github.com/fluhartyml/Memory-Aid-LockBox.git - Choose where to save it and click Clone.
Prefer Terminal?
git clone https://github.com/fluhartyml/Memory-Aid-LockBox.gitThe project is configured for the original developer's identifiers. To run it under your own account, change these in the target's Signing & Capabilities:
- Team — your Apple Developer team
-
Bundle Identifier — change
com.nightgard.Memory-Aid-LockBoxto your own - iCloud container — create and select your own CloudKit container (the app stores its vault in your private database)
- Pick a scheme of
Memory Aid LockBoxand a destination (an iPhone/iPad or My Mac). - Press Run (⌘R).
- On first launch the app seeds a set of starter folders and asks for the permissions it needs as you use each feature (Face ID, camera, photos, location, calendars, reminders).
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
set -o pipefail
# iOS simulator
xcodebuild -scheme "Memory Aid LockBox" \
-destination 'generic/platform=iOS Simulator' \
-configuration Debug CODE_SIGNING_ALLOWED=NO build
# macOS
xcodebuild -scheme "Memory Aid LockBox" \
-destination 'platform=macOS' \
-configuration Debug CODE_SIGNING_ALLOWED=NO buildNote: point
DEVELOPER_DIRat whichever Xcode 26+ you have installed.