chore(ios): rename app to Clawdis
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
# ClawdisKit (iOS)
|
# Clawdis (iOS)
|
||||||
|
|
||||||
Internal-only SwiftUI app scaffold.
|
Internal-only SwiftUI app scaffold.
|
||||||
|
|
||||||
@@ -11,7 +11,7 @@ brew install swiftformat swiftlint
|
|||||||
```bash
|
```bash
|
||||||
cd apps/ios
|
cd apps/ios
|
||||||
xcodegen generate
|
xcodegen generate
|
||||||
open ClawdisNode.xcodeproj
|
open Clawdis.xcodeproj
|
||||||
```
|
```
|
||||||
|
|
||||||
## Shared packages
|
## Shared packages
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import SwiftUI
|
import SwiftUI
|
||||||
|
|
||||||
@main
|
@main
|
||||||
struct ClawdisNodeApp: App {
|
struct ClawdisApp: App {
|
||||||
@StateObject private var appModel = NodeAppModel()
|
@StateObject private var appModel = NodeAppModel()
|
||||||
@Environment(\.scenePhase) private var scenePhase
|
@Environment(\.scenePhase) private var scenePhase
|
||||||
|
|
||||||
@@ -5,7 +5,7 @@
|
|||||||
<key>CFBundleDevelopmentRegion</key>
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
||||||
<key>CFBundleDisplayName</key>
|
<key>CFBundleDisplayName</key>
|
||||||
<string>ClawdisKit</string>
|
<string>Clawdis</string>
|
||||||
<key>CFBundleExecutable</key>
|
<key>CFBundleExecutable</key>
|
||||||
<string>$(EXECUTABLE_NAME)</string>
|
<string>$(EXECUTABLE_NAME)</string>
|
||||||
<key>CFBundleIdentifier</key>
|
<key>CFBundleIdentifier</key>
|
||||||
@@ -25,11 +25,11 @@
|
|||||||
<string>_clawdis-bridge._tcp</string>
|
<string>_clawdis-bridge._tcp</string>
|
||||||
</array>
|
</array>
|
||||||
<key>NSLocalNetworkUsageDescription</key>
|
<key>NSLocalNetworkUsageDescription</key>
|
||||||
<string>ClawdisKit discovers and connects to your Clawdis bridge on the local network.</string>
|
<string>Clawdis discovers and connects to your Clawdis bridge on the local network.</string>
|
||||||
<key>NSMicrophoneUsageDescription</key>
|
<key>NSMicrophoneUsageDescription</key>
|
||||||
<string>ClawdisKit needs microphone access for voice wake.</string>
|
<string>Clawdis needs microphone access for voice wake.</string>
|
||||||
<key>NSSpeechRecognitionUsageDescription</key>
|
<key>NSSpeechRecognitionUsageDescription</key>
|
||||||
<string>ClawdisKit uses on-device speech recognition for voice wake.</string>
|
<string>Clawdis uses on-device speech recognition for voice wake.</string>
|
||||||
<key>UIApplicationSceneManifest</key>
|
<key>UIApplicationSceneManifest</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>UIApplicationSupportsMultipleScenes</key>
|
<key>UIApplicationSupportsMultipleScenes</key>
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
name: ClawdisNode
|
name: Clawdis
|
||||||
options:
|
options:
|
||||||
bundleIdPrefix: com.steipete.clawdis
|
bundleIdPrefix: com.steipete.clawdis
|
||||||
deploymentTarget:
|
deploymentTarget:
|
||||||
@@ -10,7 +10,7 @@ packages:
|
|||||||
path: ../shared/ClawdisKit
|
path: ../shared/ClawdisKit
|
||||||
|
|
||||||
targets:
|
targets:
|
||||||
ClawdisNode:
|
Clawdis:
|
||||||
type: application
|
type: application
|
||||||
platform: iOS
|
platform: iOS
|
||||||
sources:
|
sources:
|
||||||
@@ -43,14 +43,14 @@ targets:
|
|||||||
info:
|
info:
|
||||||
path: Sources/Info.plist
|
path: Sources/Info.plist
|
||||||
properties:
|
properties:
|
||||||
CFBundleDisplayName: ClawdisKit
|
CFBundleDisplayName: Clawdis
|
||||||
UILaunchScreen: {}
|
UILaunchScreen: {}
|
||||||
UIApplicationSceneManifest:
|
UIApplicationSceneManifest:
|
||||||
UIApplicationSupportsMultipleScenes: false
|
UIApplicationSupportsMultipleScenes: false
|
||||||
UIBackgroundModes:
|
UIBackgroundModes:
|
||||||
- audio
|
- audio
|
||||||
NSLocalNetworkUsageDescription: ClawdisKit discovers and connects to your Clawdis bridge on the local network.
|
NSLocalNetworkUsageDescription: Clawdis discovers and connects to your Clawdis bridge on the local network.
|
||||||
NSBonjourServices:
|
NSBonjourServices:
|
||||||
- _clawdis-bridge._tcp
|
- _clawdis-bridge._tcp
|
||||||
NSMicrophoneUsageDescription: ClawdisKit needs microphone access for voice wake.
|
NSMicrophoneUsageDescription: Clawdis needs microphone access for voice wake.
|
||||||
NSSpeechRecognitionUsageDescription: ClawdisKit uses on-device speech recognition for voice wake.
|
NSSpeechRecognitionUsageDescription: Clawdis uses on-device speech recognition for voice wake.
|
||||||
|
|||||||
@@ -171,7 +171,7 @@ Generate the Xcode project:
|
|||||||
```bash
|
```bash
|
||||||
cd apps/ios
|
cd apps/ios
|
||||||
xcodegen generate
|
xcodegen generate
|
||||||
open ClawdisNode.xcodeproj
|
open Clawdis.xcodeproj
|
||||||
```
|
```
|
||||||
|
|
||||||
## Storage plan (private by default)
|
## Storage plan (private by default)
|
||||||
|
|||||||
Reference in New Issue
Block a user