apps/rebreak-binder-mac/ — neue macOS-App die User durch den kompletten Self-Bind-Prozess führt: Welcome → Preflight → Supervise → Enroll → Configure (MDM-Push + Pre/Post-Check) → Sideload Lock-Profile (AirDrop). 3-Layer Smart-Resume: supervised? + Enrollment-Profil installed (cfgutil Ground-Truth)? + MDM-Ack fresh (NanoMDM-DB via ssh+psql)? Services: DeviceDetector (ideviceinfo + cfgutil), SuperviseRunner (spawnt supervise-magic CLI), MDMClient (PUT /v1/enqueue?push=1, Apple XML-Plist, identisch zum server-watcher-Format), MDMStatus (DB-Real- Check + ManagedApplicationList-Result-Read). Plus: - fix(supervise-magic): EOF nach ProcessMessage Response (ErrorCode=0) ist Success, nicht Error — vermeidet false-fail bei iPhone-Restore- Reboot - feat(mdm-profiles): rebreak-content-filter-mdm.mobileconfig als MDM-Push-Variante (ohne ConsentText, ohne globales allowAppRemoval= false — per-app via managed-state) End-to-End validiert: App-Push via Ad-Hoc-Manifest (silent), Managed- State via ManagedApplicationList-Query, NEFilter-Mode nach App-Force- Quit, Lock-Profile non-removable nach Sideload. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
48 lines
1.3 KiB
YAML
48 lines
1.3 KiB
YAML
name: RebreakBinder
|
|
options:
|
|
bundleIdPrefix: org.rebreak.binder
|
|
deploymentTarget:
|
|
macOS: "14.0"
|
|
createIntermediateGroups: true
|
|
generateEmptyDirectories: true
|
|
|
|
settings:
|
|
base:
|
|
SWIFT_VERSION: "5.10"
|
|
MACOSX_DEPLOYMENT_TARGET: "14.0"
|
|
PRODUCT_BUNDLE_IDENTIFIER: org.rebreak.binder.mac
|
|
MARKETING_VERSION: "0.1.0"
|
|
CURRENT_PROJECT_VERSION: "1"
|
|
DEVELOPMENT_TEAM: ""
|
|
CODE_SIGN_STYLE: Automatic
|
|
CODE_SIGN_IDENTITY: "-"
|
|
ENABLE_HARDENED_RUNTIME: NO
|
|
ENABLE_APP_SANDBOX: NO
|
|
|
|
targets:
|
|
RebreakBinder:
|
|
type: application
|
|
platform: macOS
|
|
sources:
|
|
- path: Sources
|
|
excludes:
|
|
- "Resources/Info.plist"
|
|
resources:
|
|
- path: Sources/Resources/Assets.xcassets
|
|
optional: true
|
|
info:
|
|
path: Sources/Resources/Info.plist
|
|
properties:
|
|
CFBundleDisplayName: ReBreak Binder
|
|
CFBundleShortVersionString: $(MARKETING_VERSION)
|
|
CFBundleVersion: $(CURRENT_PROJECT_VERSION)
|
|
LSMinimumSystemVersion: $(MACOSX_DEPLOYMENT_TARGET)
|
|
LSUIElement: false
|
|
NSHumanReadableCopyright: "© 2026 Raynis GmbH"
|
|
NSPrincipalClass: NSApplication
|
|
NSHighResolutionCapable: true
|
|
settings:
|
|
base:
|
|
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
|
|
COMBINE_HIDPI_IMAGES: YES
|