New mobile/ directory with Capacitor project: - Configurable server URL launcher (default: app.pedshub.com) - Android: foreground service + wake lock for background recording (AudioRecordingService preserved from existing TWA) - iOS: background audio mode + microphone permission - App ID: com.pedshub.scribe - Both platforms initialized and synced Existing android/ TWA project untouched — this is a separate project. Build: cd mobile && npx cap open android (or ios)
59 lines
729 B
Text
59 lines
729 B
Text
parts {
|
|
device {
|
|
display {
|
|
width 1080
|
|
height 1920
|
|
x 0
|
|
y 0
|
|
}
|
|
}
|
|
portrait {
|
|
background {
|
|
image port_back.webp
|
|
}
|
|
onion {
|
|
image port_fore.webp
|
|
}
|
|
}
|
|
landscape {
|
|
background {
|
|
image land_back.webp
|
|
}
|
|
onion {
|
|
image land_fore.webp
|
|
}
|
|
}
|
|
}
|
|
layouts {
|
|
portrait {
|
|
width 1370
|
|
height 2534
|
|
event EV_SW:0:1
|
|
part1 {
|
|
name portrait
|
|
x 0
|
|
y 0
|
|
}
|
|
part2 {
|
|
name device
|
|
x 139
|
|
y 285
|
|
}
|
|
}
|
|
landscape {
|
|
width 2596
|
|
height 1258
|
|
event EV_SW:0:0
|
|
part1 {
|
|
name landscape
|
|
x 0
|
|
y 0
|
|
}
|
|
part2 {
|
|
name device
|
|
x 338
|
|
y 1158
|
|
rotation 3
|
|
}
|
|
}
|
|
}
|