Commit bcaf2779df42c6710e796eeaa740d0f75bbe5bbe

Authored by 权海
1 parent bdad0c11

feat(ui):添加watch静态UI

xxx

feat(ui):完成watch UI
Showing 70 changed files with 3073 additions and 579 deletions

Too many changes to show.

To preserve performance only 70 of 70+ files are displayed.

... ... @@ -48,6 +48,16 @@ end
post_install do |installer|
installer.pods_project.targets.each do |target|
is_watchos_target = target.build_configurations.any? do |config|
config.build_settings['WATCHOS_DEPLOYMENT_TARGET']
end
next if is_watchos_target
flutter_additional_ios_build_settings(target)
target.build_configurations.each do |config|
config.build_settings['ENABLE_USER_SCRIPT_SANDBOXING'] = 'NO'
end
end
end
... ...
... ... @@ -92,7 +92,7 @@ EXTERNAL SOURCES:
:path: ".symlinks/plugins/webview_flutter_wkwebview/darwin"
SPEC CHECKSUMS:
Flutter: cabc95a1d2626b1b06e7179b784ebcf0c0cde467
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
fluttertoast: 2c67e14dce98bbdb200df9e1acf610d7a6264ea1
image_cropper: c4326ea50132b1e1564499e5d32a84f01fb03537
image_picker_ios: 7fe1ff8e34c1790d6fff70a32484959f563a928a
... ... @@ -108,6 +108,6 @@ SPEC CHECKSUMS:
TOCropViewController: 80b8985ad794298fb69d3341de183f33d1853654
webview_flutter_wkwebview: 1821ceac936eba6f7984d89a9f3bcb4dea99ebb2
PODFILE CHECKSUM: 11b37be67b2ce5b4cca7654ac969f9b9789ac4bf
PODFILE CHECKSUM: c331311b0ccb42e8d5cf37701560080ce4a73ef8
COCOAPODS: 1.16.2
... ...
//
// DFCoupleStressHomeView.swift
// iwatch
//
// Created by 权海 on 2026/6/15.
//
import SwiftUI
struct DFCoupleStressHomeView: View {
var hasData: Bool = true
var body: some View {
VStack {
DFWatchFigmaHeader(subtitle: hasData ? "我们的状态·HRV" : "我们的状态·实时")
Spacer().frame(height: 9)
HStack(spacing: 4){
DFCouplePersonCard(
kind:.overloaded,
name: "男朋友",
value: hasData ? "30ms" : "-%",
).frame(maxWidth: .infinity)
DFCouplePersonCard(
kind: .excellent,
name: "我",
value: hasData ? "80ms" : "-%",
).frame(maxWidth: .infinity)
}
Spacer().frame(height: 5)
HStack{
DFWatchHeartBeatCircle(progress: 0, value: nil)
.frame(width: 45, height: 44)
Spacer()
DFWatchCloseCircle(outerProgress: 0, middleProgress: 0, innerProgress: 0)
.frame(width: 44, height: 44)
Spacer()
DFWatchStepCountCircle(progress: 0, value: 0)
.frame(width: 44, height: 44)
}
}.padding(.all, 16)
}
}
private struct DFCouplePersonCard: View {
let kind: DFWatchStressKind?
let name: String
let value: String?
var body: some View {
VStack(spacing: 4) {
HStack{}
.frame(width: 55, height: 55)
.background(Color(hex: "#FF0000"))
Text(kind?.title ?? "等待数据")
.font(.system(size: 12, weight: .semibold))
.foregroundColor(kind?.color ?? Color(hex: "#B0B0B6"))
Text(name)
.font(.system(size: 10, weight: .medium))
.foregroundColor(.white)
Text(value ?? "--ms")
.font(.system(size: 8, weight: .light))
.foregroundColor(.white)
}
}
}
... ...
//
// File.swift
// iwatch
//
// Created by 权海 on 2026/6/15.
//
import SwiftUI
struct DFSingleStressHomeView: View {
var kind: DFWatchStressKind = .overloaded
var value: String? = "38ms"
var sampleTime: String = "16:06"
private var valueDesc: String{
if let value{
return kind.title + "·" + value
}
return "等待数据"
}
var body: some View {
ZStack(alignment: .top) {
LinearGradient(
colors: [kind.color.opacity(0.3), kind.color.opacity(0)],
startPoint: .top,
endPoint: .bottom
)
.frame(width: .infinity, height: .infinity)
VStack(spacing: 8){
DFWatchFigmaHeader(subtitle: "HRV")
.padding(.top, 16)
HStack{}
.frame(width: 78, height: 78)
.background(Color(hex: "#FF0000"))
Text(valueDesc)
.font(.system(size: 16, weight: .semibold))
.foregroundStyle(value == nil ? Color(hex: "#B0B0B6") : kind.color)
DFWatchFigmaSegmentBar(selected: kind)
.frame(height: 14)
Text(sampleTime)
.font(.system(size: 12))
.foregroundStyle(.white)
}.padding(.horizontal, value == nil ? 30 : 22)
}
}
}
... ...
//
// DFWatchCloseCircle.swift
// iwatch
//
// Created by 权海 on 2026/6/12.
//
import SwiftUI
struct DFWatchCloseCircle: View {
var outerProgress: CGFloat
var middleProgress: CGFloat
var innerProgress: CGFloat
var outerColor: Color = Color(hex: "#FF5279")
var middleColor: Color = Color(hex: "#3BD49D")
var innerColor: Color = Color(hex: "#7B9BFB")
var backgroundColor: Color = .black
var body: some View {
GeometryReader { geometry in
let size = min(geometry.size.width, geometry.size.height)
let lineWidth: CGFloat = size * 0.13
ZStack {
backgroundColor
RingView(
progress: outerProgress,
color: outerColor,
lineWidth: lineWidth
)
.frame(
width: size * 0.87,
height: size * 0.87
)
RingView(
progress: middleProgress,
color: middleColor,
lineWidth: lineWidth
)
.frame(
width: size * 0.55,
height: size * 0.55
)
RingView(
progress: innerProgress,
color: innerColor,
lineWidth: lineWidth
)
.frame(
width: size * 0.24,
height: size * 0.24
)
Circle()
.fill(backgroundColor)
.frame(
width: size * 0.15,
height: size * 0.15
)
}
.frame(width: size, height: size)
.clipShape(Circle())
}
.aspectRatio(1, contentMode: .fit)
}
}
struct RingView: View {
var progress: CGFloat
var color: Color
var lineWidth: CGFloat
var body: some View {
ZStack{
Circle()
.stroke(
color,
style: StrokeStyle(
lineWidth: lineWidth,
lineCap: .round,
lineJoin: .round
)
)
.opacity(0.3)
Circle()
.trim(from: 0, to: max(0, min(progress, 1)))
.stroke(
color,
style: StrokeStyle(
lineWidth: lineWidth,
lineCap: .round,
lineJoin: .round
)
)
.rotationEffect(.degrees(-90))
}
}
}
... ...
//
// DFWatchCloseView.swift
// iwatch
//
// Created by 权海 on 2026/6/12.
//
import SwiftUI
struct DFWatchCloseView: View {
let closeOnClick: (() -> Void)?
var body: some View {
Button {
closeOnClick?()
} label: {
Image(systemName: "xmark")
.fontWeight(.bold)
.tint(.white)
}
.frame(width: 32, height: 32)
.background(.white.opacity(0.1))
.clipShape(
RoundedRectangle(cornerRadius: 16)
).padding(.leading, 14)
}
}
... ...
import SwiftUI
struct DFTodayStatusOverviewFigmaView: View {
var hasData: Bool = true
private var rows: [DFStatusOverviewRow] {
[
.init(title: "平均HRV", value: hasData ? "29" : "-", unit: "ms", icon: "waveform.path.ecg", tint: DFWatchFigmaColor.blue),
.init(title: "最新心率", value: hasData ? "79" : "-", unit: "次/分", icon: "heart.fill", tint: DFWatchFigmaColor.red),
.init(title: "步数", value: hasData ? "11198" : "-", unit: "步", icon: "figure.walk", tint: DFWatchFigmaColor.green),
.init(title: "活动记录", value: hasData ? "400" : "-", unit: "大卡", icon: "flame.fill", tint: DFWatchFigmaColor.orange)
]
}
var body: some View {
ZStack{
HStack{
Spacer()
}
VStack(alignment: .trailing){
Text(.now, style: .time)
.font(.system(size: 14, weight: .medium))
.foregroundColor(.white)
Text("我的今日状态")
.lineLimit(1)
.font(.system(size: 16, weight: .medium))
.minimumScaleFactor(0.7)
.foregroundColor(.white)
ScrollView {
ForEach(rows) { row in
DFStatusOverviewCard(row: row)
.padding(.bottom, 4)
}
Spacer()
.frame(height: 24)
}
}.padding(EdgeInsets(top: 10, leading: 10, bottom: 0, trailing: 10))
}
}
}
private struct DFStatusOverviewRow: Identifiable {
let id = UUID()
let title: String
let value: String
let unit: String
let icon: String
let tint: Color
}
private struct DFStatusOverviewCard: View {
let row: DFStatusOverviewRow
var body: some View {
HStack(spacing: 0) {
Image(systemName: row.icon)
.frame(width: 18, height: 18)
.foregroundColor(row.tint)
Spacer()
.frame(width: 6)
Text(row.title)
.font(.system(size: 12, weight: .medium))
.lineLimit(1)
.minimumScaleFactor(0.7)
.foregroundColor(.white)
Spacer(minLength: 0)
Text(row.value)
.font(.system(size: 12, weight: .medium))
.lineLimit(1)
.minimumScaleFactor(0.7)
.foregroundColor(.white)
Spacer()
.frame(width: 2)
Text(row.unit)
.font(.system(size: 12, weight: .regular))
.lineLimit(1)
.minimumScaleFactor(0.7)
.foregroundColor(.white.opacity(0.5))
}
.padding(.horizontal, 8)
.padding(.vertical, 10)
.background(Color.white.opacity(0.10))
.clipShape(RoundedRectangle(cornerRadius: 10))
}
}
struct DFWatchSettingsFigmaView: View {
var body: some View {
ZStack(alignment: .topTrailing){
HStack{
Spacer()
}
VStack(alignment: .leading){
Spacer()
.frame(height: 14)
DFWatchCloseView {
}
Spacer()
.frame(height: 6)
HStack{
Text("刷新模式")
.font(.system(size: 16, weight: .medium))
.foregroundColor(.white)
DFWatchFigmaProBadge()
Spacer()
}.padding(.leading, 16)
ScrollView {
VStack(alignment: .leading, spacing: 8) {
DFSettingOption(title: "HRV", accessory: .check)
DFSettingOption(title: "实时压力", accessory: .lock)
Text("刷新模式说明")
.font(.system(size: 9, weight: .regular))
.underline()
.foregroundColor(DFWatchFigmaColor.purpleText)
.padding(.leading, 8)
}.padding(.horizontal, 10)
.padding(.bottom, 24)
}
}
Text(.now, style: .time)
.font(.system(size: 14, weight: .medium))
.foregroundColor(.white)
.padding(.trailing, 14)
.padding(.top, 10)
}
}
}
private enum DFSettingAccessory {
case check
case lock
}
private struct DFSettingOption: View {
let title: String
let accessory: DFSettingAccessory
var body: some View {
HStack {
Text(title)
.font(.system(size: 12, weight: .medium))
.foregroundColor(.white)
Spacer()
switch accessory {
case .check:
Image(systemName: "checkmark")
.font(.system(size: 15, weight: .bold))
.foregroundColor(.white)
case .lock:
Image(systemName: "lock.fill")
.font(.system(size: 15, weight: .medium))
.foregroundColor(.white.opacity(0.84))
}
}
.frame(height: 38)
.padding(.horizontal, 8)
.background(Color.white.opacity(0.10))
.clipShape(RoundedRectangle(cornerRadius: 10))
}
}
struct DFProRequiredInfoFigmaView: View {
var body: some View {
ZStack(alignment: .topTrailing){
HStack{
Spacer()
}
VStack(alignment: .center){
Spacer()
.frame(height: 14)
HStack{
DFWatchCloseView {
}
Spacer()
}
Spacer()
.frame(height: 6)
DFWatchFigmaProBadge()
Spacer()
.frame(height: 10)
ScrollView {
VStack(alignment: .leading, spacing: 11) {
Text("该功能需要DoubleFeel Pro会员才可使用。你可以前往手机App开通会员。")
Text("如果已经开通会员,但手表端还没有显示,可以先退出当前页面,再重新进入,会员状态通常会自动更新。")
}
.font(.system(size: 11, weight: .regular))
.foregroundColor(.white)
.lineSpacing(2)
.padding(.horizontal, 12)
.padding(.bottom, 24)
}
}
Text(.now, style: .time)
.font(.system(size: 14, weight: .medium))
.foregroundColor(.white)
.padding(.trailing, 14)
.padding(.top, 10)
}
}
}
struct DFRefreshModeInfoFigmaView: View {
var body: some View {
ZStack(alignment: .topTrailing){
HStack{
Spacer()
}
VStack(alignment: .leading){
Spacer()
.frame(height: 14)
DFWatchCloseView {
}
Spacer()
.frame(height: 8)
ScrollView {
VStack(alignment: .leading){
Text("HRV")
.font(.system(size: 14, weight: .medium))
.foregroundColor(.white)
Spacer()
.frame(height: 4)
Text("""
一般情况下,Apple Watch 会每隔一段时间自动采集一次 HRV 数据。
在佩戴稳定、身体静止或放松状态下,系统更容易获取有效 HRV 数据。
剧烈运动、频繁活动、手表佩戴不稳定或刚解锁 Apple Watch 后,数据同步可能会延迟。
Apple Watch 与 iPhone 的健康数据同步由 Apple Health 系统完成,因此并不会始终实时更新。
""")
.font(.system(size: 9, weight: .regular))
.foregroundColor(.white.opacity(0.8))
Spacer()
.frame(height: 14)
Text("实时压力")
.font(.system(size: 14, weight: .medium))
.foregroundColor(.white)
Spacer()
.frame(height: 4)
Text("""
实时压力会结合当前 HRV、心率状态与个人历史数据动态变化。
通常情况下:
· 手机 App 会自动刷新当天综合压力状态
· Apple Watch 会显示最近一次的实时压力变化
由于 Apple Health 数据同步存在延迟,实时压力可能不会立即更新。
""")
.font(.system(size: 9, weight: .regular))
.foregroundColor(.white.opacity(0.8))
Spacer()
.frame(height: 14)
Divider()
.overlay(Color.white.opacity(0.25))
Spacer()
.frame(height: 14)
Text("""
以下情况可能导致数据延迟或暂时不可用:
· Apple Watch 处于低电量模式
· Apple Health 权限未开启
· 长时间未佩戴 Apple Watch
· 正在运动或身体频繁活动
· 手表刚解锁或刚重新佩戴
· 系统尚未完成数据同步
""")
.font(.system(size: 8, weight: .regular))
.foregroundColor(.white.opacity(0.8))
}.padding(.horizontal, 10)
.padding(.bottom, 24)
}
}
VStack(alignment: .trailing){
Text(.now, style: .time)
.font(.system(size: 14, weight: .medium))
.foregroundColor(.white)
Text("HRV")
.font(.system(size: 12, weight: .medium))
.foregroundColor(.white)
.opacity(0.6)
}
.padding(.trailing, 14)
.padding(.top, 10)
}
}
}
struct DFWatchFigmaDetailPreviewGallery: View {
var body: some View {
TabView {
DFTodayStatusOverviewFigmaView(hasData: true)
DFTodayStatusOverviewFigmaView(hasData: false)
DFWatchSettingsFigmaView()
DFProRequiredInfoFigmaView()
DFRefreshModeInfoFigmaView()
}
#if os(watchOS)
.tabViewStyle(.verticalPage)
#else
.tabViewStyle(.page)
#endif
}
}
#Preview("Figma watch detail states") {
DFWatchFigmaDetailPreviewGallery()
}
... ...
import SwiftUI
import UIKit
struct DFDefaultWatchHomeView: View {
@State private var batteryLevel: Float = UIDevice.current.batteryLevel
@State private var batteryState: UIDevice.BatteryState = UIDevice.current.batteryState
@State private var weekday: String = ""
@State private var day: String = ""
var hasData: Bool = false
var hrvValue: String = "38ms"
var hrvTime: String = "19:04"
var batteryColor: Color{
if batteryLevel < 0.1{
// 0
return Color(hex: "#FF0000")
}else if batteryLevel < 40{
// 25
return Color(hex: "#FF9A6E")
}else if batteryLevel < 60{
// 50
return Color(hex: "#7B9BFB")
}else if batteryLevel < 80{
// 75
return Color(hex: "#3BD49D")
}else{
// 100
return Color(hex: "#3BD49D")
}
}
var batteryImageName: String{
if batteryLevel < 0.1{
// 0
return "battery.0percent"
}else if batteryLevel < 40{
// 25
return "battery.25percent"
}else if batteryLevel < 60{
// 50
return "battery.50percent"
}else if batteryLevel < 80{
// 75
return "battery.75percent"
}else{
// 100
return "battery.100percent"
}
}
var body: some View {
VStack{
HStack{
Image(systemName: batteryImageName)
.frame(height: 20)
.tint(batteryColor)
Spacer()
Text(weekday)
.font(.system(size: 16, weight: .medium))
.foregroundColor(DFWatchFigmaColor.purple)
Spacer().frame(width: 4)
Text(day)
.font(.system(size: 16, weight: .medium))
.foregroundColor(.white)
}
Text(.now, style: .time)
.font(.system(size: 52, weight: .medium))
.foregroundColor(.white)
.frame(height: 50)
HStack(alignment: .center){
HStack{}
.frame(width: 44, height: 44)
.background(Color(hex: "#FF0000"))
Spacer().frame(width: 14)
VStack(alignment: .leading, spacing: 0) {
Text(hasData ? "状态优秀" : "暂无数据")
.font(.system(size: 16, weight: .semibold))
.foregroundColor(hasData ? DFWatchFigmaColor.green : DFWatchFigmaColor.grayText)
Text(hasData ? "\(hrvValue)·\(hrvTime)" : "--ms·--:--")
.font(.system(size: 12, weight: .medium))
.foregroundColor(.white)
DFWatchFigmaSegmentBar(selected: nil)
.frame(height: 14)
}
}
HStack{
DFWatchHeartBeatCircle(progress: 0, value: nil)
.frame(width: 45, height: 44)
Spacer()
DFWatchCloseCircle(outerProgress: 0, middleProgress: 0, innerProgress: 0)
.frame(width: 44, height: 44)
Spacer()
DFWatchStepCountCircle(progress: 0, value: 0)
.frame(width: 44, height: 44)
}
}
.padding(.all, 15)
.onAppear {
updateDate()
updateBattery()
NotificationCenter.default.addObserver(
forName: UIDevice.batteryLevelDidChangeNotification,
object: nil,
queue: .main
) { _ in
updateBattery()
}
NotificationCenter.default.addObserver(
forName: UIDevice.batteryStateDidChangeNotification,
object: nil,
queue: .main
) { _ in
updateBattery()
}
}
}
private func updateBattery() {
UIDevice.current.isBatteryMonitoringEnabled = true
batteryLevel = UIDevice.current.batteryLevel
batteryState = UIDevice.current.batteryState
}
private func updateDate(){
let calendar = Calendar.current
let component = calendar.component(.weekday, from: .now)
weekday = calendar.shortWeekdaySymbols[component].uppercased()
let formatter = DateFormatter()
formatter.dateFormat = "dd"
day = formatter.string(from: .now)
}
}
... ...
import SwiftUI
enum DFWatchStressKind: String {
case excellent
case normal
case little
case overloaded
var title: String {
switch self {
case .excellent:
return "状态优秀"
case .overloaded:
return "压力过载"
case .normal:
return "状态正常"
case .little:
return "注意压力"
}
}
var color: Color {
switch self {
case .excellent:
return DFWatchFigmaColor.green
case .overloaded:
return DFWatchFigmaColor.red
case .normal:
return DFWatchFigmaColor.blue
case .little:
return DFWatchFigmaColor.orange
}
}
}
enum DFWatchFigmaColor {
static let background = Color(hex: "0F0F11")
static let purple = Color(hex: "845EEE")
static let purpleText = Color(hex: "A285F4")
static let green = Color(hex: "3BD49D")
static let red = Color(hex: "FF5279")
static let orange = Color(hex: "FF9A6E")
static let blue = Color(hex: "7B9BFB")
static let grayText = Color(hex: "B0B0B6")
static let grayBar = Color(hex: "78787D")
static let pro = Color(hex: "FFDF51")
}
struct DFWatchFigmaCanvas<Content: View>: View {
private let designSize = CGSize(width: 352, height: 430)
let content: (CGFloat) -> Content
init(@ViewBuilder content: @escaping (CGFloat) -> Content) {
self.content = content
}
var body: some View {
GeometryReader { proxy in
let scale = min(proxy.size.width / designSize.width, proxy.size.height / designSize.height)
ZStack {
DFWatchFigmaColor.background
content(scale)
}
.frame(width: designSize.width * scale, height: designSize.height * scale)
.position(x: proxy.size.width / 2, y: proxy.size.height / 2)
.clipped()
}
.background(DFWatchFigmaColor.background)
.ignoresSafeArea()
}
}
extension CGFloat {
func df(_ scale: CGFloat) -> CGFloat {
self * scale
}
}
extension Int {
func df(_ scale: CGFloat) -> CGFloat {
CGFloat(self) * scale
}
}
extension Double {
func df(_ scale: CGFloat) -> CGFloat {
CGFloat(self) * scale
}
}
struct DFWatchFigmaHeader: View {
var subtitle: String?
var body: some View {
HStack {
Circle()
.fill(Color.white.opacity(0.12))
.frame(width: 32, height: 32)
.overlay(
Image(systemName: "gearshape.fill")
.font(.system(size: 14, weight: .medium))
.foregroundColor(.white)
)
Spacer()
VStack(alignment: .trailing, spacing: 1) {
Text(.now, style: .time)
.font(.system(size: 14, weight: .medium))
.foregroundColor(.white)
if let subtitle {
Text(subtitle)
.font(.system(size: 12, weight: .regular))
.foregroundColor(.white.opacity(0.6))
}
}
}
}
}
struct DFWatchFigmaProBadge: View {
var body: some View {
HStack(spacing: 0) {
Image(systemName: "crown.fill")
.font(.system(size: 7, weight: .bold))
.frame(width: 13, height: 13)
Text("PRO")
.font(.system(size: 9, weight: .medium))
}
.foregroundColor(DFWatchFigmaColor.background)
.padding(.horizontal, 4)
.background(DFWatchFigmaColor.pro)
.clipShape(Capsule())
}
}
struct DFWatchFigmaSegmentBar: View {
let selected: DFWatchStressKind?
let allKinds: [DFWatchStressKind] = [.overloaded, .little, .normal, .excellent]
let spacing: CGFloat = 2
var body: some View {
if let selected{
GeometryReader { proxy in
HStack(spacing: spacing) {
let extraWidth: CGFloat = proxy.size.width / 5
let availableWidth = proxy.size.width - CGFloat(allKinds.count - 1) * spacing - extraWidth
let itemWidth = floor(availableWidth/4)
ForEach(allKinds, id: \.rawValue){kind in
DFWatchKindBar(width: selected == kind ? (itemWidth + extraWidth) : itemWidth, kind: kind, selectedKind: selected)
}
}
}
}else{
Capsule()
.fill(Color(hex: "#78787D"))
.frame(width: .infinity, height: 8)
}
}
}
struct DFWatchKindBar: View {
let width: CGFloat
let kind: DFWatchStressKind
let selectedKind: DFWatchStressKind
var isSelected: Bool{
kind == selectedKind
}
var body: some View {
ZStack{
Capsule()
.fill(kind.color)
.frame(width: width, height: 8)
if isSelected{
Capsule()
.stroke(kind.color, lineWidth: 4)
.frame(width: 14, height: 14)
.background(.black)
}
}
}
}
struct DFWatchFigmaBottomMetrics: View {
let scale: CGFloat
var hasData: Bool
var heartRate: String = "89"
var steps: String = "2486"
var body: some View {
ZStack {
DFMetricBubble(scale: scale, value: hasData ? heartRate : "0", icon: "heart.fill", tint: DFWatchFigmaColor.red)
.position(x: 69.df(scale), y: 362.df(scale))
DFMetricBubble(scale: scale, value: "", icon: "sparkles", tint: DFWatchFigmaColor.purple)
.position(x: 176.df(scale), y: 362.df(scale))
DFMetricBubble(scale: scale, value: hasData ? steps : "0", icon: "figure.walk", tint: DFWatchFigmaColor.green)
.position(x: 287.df(scale), y: 362.df(scale))
}
}
}
private struct DFMetricBubble: View {
let scale: CGFloat
let value: String
let icon: String
let tint: Color
var body: some View {
ZStack {
Circle()
.fill(Color.white.opacity(0.10))
.frame(width: 71.df(scale), height: 71.df(scale))
Circle()
.trim(from: 0, to: value.isEmpty ? 1 : 0.72)
.stroke(tint, style: StrokeStyle(lineWidth: max(1, 5.df(scale)), lineCap: .round))
.rotationEffect(.degrees(-90))
.frame(width: 63.df(scale), height: 63.df(scale))
VStack(spacing: 7.df(scale)) {
Text(value)
.font(.system(size: 18.df(scale), weight: .medium))
.foregroundColor(.white)
.opacity(value.isEmpty ? 0 : 1)
Image(systemName: icon)
.font(.system(size: 18.df(scale), weight: .semibold))
.foregroundColor(.white)
}
}
.frame(width: 82.df(scale), height: 82.df(scale))
}
}
... ...
//
// DFWatchHeartBeatCircle.swift
// iwatch
//
// Created by 权海 on 2026/6/12.
//
import SwiftUI
struct DFWatchHeartBeatCircle: View {
/// 0...1
var progress: CGFloat
/// 中间显示的分数
var value: Int?
var lineWidth: CGFloat = 6
var markerSize: CGFloat = 8
private let gradientColors: [Color] = [
Color(hex: "#3BD49D"),
Color(hex: "#7B9BFB"),
Color(hex: "#FF9A6E"),
Color(hex: "#FF5279")
]
var body: some View {
GeometryReader { geometry in
let size = min(geometry.size.width, geometry.size.height)
let arcSize = size - markerSize
let startAngle: CGFloat = 90
let sweepAngle: CGFloat = 270
let rotation = 0.128 * 360
let clampedProgress = min(max(progress, 0), 1)
let markerAngle = (startAngle + rotation) + sweepAngle * clampedProgress
ZStack {
Color.black
// 渐变进度圆弧
Circle()
.trim(from: 0.25, to: 1)
.stroke(
AngularGradient(
gradient: Gradient(colors: gradientColors),
center: .center,
startAngle: .degrees(Double(startAngle)),
endAngle: .degrees(Double(startAngle + sweepAngle))
),
style: StrokeStyle(
lineWidth: lineWidth,
lineCap: .round,
lineJoin: .round
)
)
.frame(width: arcSize, height: arcSize)
.rotationEffect(.degrees(rotation))
.opacity(value == nil ? 0.3 : 1)
// 中间数值
Text("\(value ?? 0)")
.font(.system(size: 9, weight: .bold, design: .rounded))
.lineLimit(1)
.foregroundStyle(.white)
.frame(maxWidth: geometry.size.width - 20)
.minimumScaleFactor(0.8)
.offset(y: -size * 0.02)
// 底部爱心
HeartBadgeView()
.frame(width: 10, height: 10)
.offset(y: geometry.size.height - 28)
// 当前进度 marker
if let _ = value{
let markerPoint = pointOnCircle(
angle: markerAngle,
radius: arcSize / 2,
center: CGPoint(x: size / 2, y: size / 2)
)
Circle()
.fill(.clear)
.frame(width: markerSize, height: markerSize)
.overlay(
Circle()
.stroke(Color.black, lineWidth: 2)
)
.position(markerPoint)
}
}
.frame(width: size, height: size)
}
.aspectRatio(1, contentMode: .fit)
}
private func pointOnCircle(
angle: CGFloat,
radius: CGFloat,
center: CGPoint
) -> CGPoint {
let radians = angle * .pi / 180
return CGPoint(
x: center.x + cos(radians) * radius,
y: center.y + sin(radians) * radius
)
}
}
struct HeartBadgeView: View {
var body: some View {
ZStack {
Image(systemName: "heart.fill")
.resizable()
.scaledToFit()
.foregroundStyle(Color(hex: "#FF5279"))
Image(systemName: "waveform.path.ecg")
.font(.system(size: 8, weight: .bold))
.minimumScaleFactor(0.9)
.foregroundStyle(.black)
.scaledToFit()
.padding(.all, 2)
}
}
}
... ...
//
// DFWatchStepCountCircle.swift
// iwatch
//
// Created by 权海 on 2026/6/12.
//
import SwiftUI
struct DFWatchStepCountCircle: View {
/// 0...1
var progress: CGFloat
/// 中间显示的分数
var value: Int
var lineWidth: CGFloat = 6
var markerSize: CGFloat = 8
private let gradientColors: [Color] = [
Color(hex: "#845EEE"),
Color(hex: "#845EEE"),
]
var body: some View {
GeometryReader { geometry in
let size = min(geometry.size.width, geometry.size.height)
let arcSize = size - markerSize
let startAngle: CGFloat = 90
let sweepAngle: CGFloat = 270
let rotation = 0.128 * 360
let clampedProgress = min(max(progress, 0), 1)
ZStack {
Color.black
// 渐变进度圆弧
Circle()
.trim(from: 0.25, to: 1)
.stroke(
AngularGradient(
gradient: Gradient(colors: gradientColors),
center: .center,
startAngle: .degrees(Double(startAngle)),
endAngle: .degrees(Double(startAngle + sweepAngle))
),
style: StrokeStyle(
lineWidth: lineWidth,
lineCap: .round,
lineJoin: .round
)
)
.frame(width: arcSize, height: arcSize)
.rotationEffect(.degrees(rotation))
.opacity(0.3)
Circle()
.trim(from: 0.25, to: 0.25 + progress * 3/4)
.stroke(
AngularGradient(
gradient: Gradient(colors: gradientColors),
center: .center,
startAngle: .degrees(Double(startAngle)),
endAngle: .degrees(Double(startAngle + sweepAngle))
),
style: StrokeStyle(
lineWidth: lineWidth,
lineCap: .round,
lineJoin: .round
)
)
.frame(width: arcSize, height: arcSize)
.rotationEffect(.degrees(rotation))
// 中间数值
Text("\(value)")
.font(.system(size: 9, weight: .bold, design: .rounded))
.lineLimit(1)
.foregroundStyle(.white)
.frame(maxWidth: geometry.size.width - 20)
.minimumScaleFactor(0.8)
.offset(y: -size * 0.02)
// 底部爱心
FootprintsIcon(color: gradientColors.first!)
.frame(width: 14, height: 14)
.offset(y: geometry.size.height - 28)
}
.frame(width: size, height: size)
}
.aspectRatio(1, contentMode: .fit)
}
}
struct FootprintsIcon: View {
var color: Color
var body: some View {
Image(systemName: "shoeprints.fill")
.resizable()
.scaledToFit()
.foregroundStyle(color)
}
}
... ...
... ... @@ -49,8 +49,8 @@ class StatusComparisonViewModel: ObservableObject {
private func getMyWatchTheme() {
// 1️⃣ 先从 UserDefaults 读取缓存
let defaults = UserDefaults(suiteName: "group.com.luiz.doublefeel.watchkitapp")
if let jsonString = defaults?.string(forKey: "myWatchTheme"),
let defaults = AppGroupConstants.defaults
if let jsonString = defaults?.string(forKey: AppGroupConstants.Key.myWatchTheme),
let jsonData = jsonString.data(using: .utf8),
let cachedModel = try? JSONDecoder().decode(WatchThemeModel.self, from: jsonData) {
// 先展示缓存数据
... ... @@ -87,8 +87,8 @@ class StatusComparisonViewModel: ObservableObject {
guard WatchUserinfoManager.share.myUserinfo?.isPaired == true else { return }
// 1️⃣ 先从 UserDefaults 读取缓存
let defaults = UserDefaults(suiteName: "group.com.luiz.doublefeel.watchkitapp")
if let jsonString = defaults?.string(forKey: "otherWatchTheme"),
let defaults = AppGroupConstants.defaults
if let jsonString = defaults?.string(forKey: AppGroupConstants.Key.otherWatchTheme),
let jsonData = jsonString.data(using: .utf8),
let cachedModel = try? JSONDecoder().decode(WatchThemeModel.self, from: jsonData) {
// 先展示缓存数据
... ... @@ -167,7 +167,7 @@ class StatusComparisonViewModel: ObservableObject {
guard let fileName else {return}
guard let containerURL = FileManager.default.containerURL(
forSecurityApplicationGroupIdentifier: "group.com.luiz.doublefeel.watchkitapp"
forSecurityApplicationGroupIdentifier: AppGroupConstants.identifier
) else {
print("❌ App Group 容器不存在,请检查配置")
return
... ...
... ... @@ -497,18 +497,18 @@ extension WatchDataManager {
}
private func saveHRVValue(_ value: Double) {
let defaults = UserDefaults(suiteName: "group.com.luiz.doublefeel.watchkitapp")
defaults?.set(value, forKey: "latestHRV")
let defaults = AppGroupConstants.defaults
defaults?.set(value, forKey: AppGroupConstants.Key.latestHRV)
}
private func saveHRVBaselineValue(_ value: Double?) {
let defaults = UserDefaults(suiteName: "group.com.luiz.doublefeel.watchkitapp")
defaults?.set(value, forKey: "latestHRVBaseline")
let defaults = AppGroupConstants.defaults
defaults?.set(value, forKey: AppGroupConstants.Key.latestHRVBaseline)
}
private func saveStepCountValue(_ value: Int) {
let defaults = UserDefaults(suiteName: "group.com.luiz.doublefeel.watchkitapp")
defaults?.set(value, forKey: "latestStepCount")
let defaults = AppGroupConstants.defaults
defaults?.set(value, forKey: AppGroupConstants.Key.latestStepCount)
}
}
... ...
... ... @@ -70,7 +70,7 @@ class WatchUserinfoManager: ObservableObject {
}
private func saveMyUserCharacter(_ character: Int) {
let defaults = UserDefaults(suiteName: "group.com.luiz.doublefeel.watchkitapp")
defaults?.set(character, forKey: "myUserCharacter")
let defaults = AppGroupConstants.defaults
defaults?.set(character, forKey: AppGroupConstants.Key.myUserCharacter)
}
}
... ...
... ... @@ -3,12 +3,15 @@
archiveVersion = 1;
classes = {
};
objectVersion = 54;
objectVersion = 77;
objects = {
/* Begin PBXBuildFile section */
0798E27DB95F2A823881D75A /* Pods_Runner_Watch_App.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7A488EFC0BD642ED604C4E43 /* Pods_Runner_Watch_App.framework */; };
20A3C4994C9B0F60D1F3BCBE /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E8DC48B3736B7FEB548D0E65 /* Pods_Runner.framework */; };
66FB19002FDBC80100F515B4 /* Runner Watch App/FigmaHome/DFWatchFigmaTokens.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66FB19032FDBC80100F515B4 /* Runner Watch App/FigmaHome/DFWatchFigmaTokens.swift */; };
66FB19012FDBC80100F515B4 /* Runner Watch App/FigmaHome/DFWatchFigmaHomeViews.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66FB19042FDBC80100F515B4 /* Runner Watch App/FigmaHome/DFWatchFigmaHomeViews.swift */; };
66FB19022FDBC80100F515B4 /* Runner Watch App/FigmaHome/DFWatchFigmaDetailViews.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66FB19052FDBC80100F515B4 /* Runner Watch App/FigmaHome/DFWatchFigmaDetailViews.swift */; };
66FBE58C2FDA4F0F00F515B4 /* Runner Watch App.app in Embed Watch Content */ = {isa = PBXBuildFile; fileRef = 66FBE58B2FDA4F0F00F515B4 /* Runner Watch App.app */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
/* End PBXBuildFile section */
... ... @@ -51,6 +54,9 @@
27E4D5A8995AB1EC91E7330E /* Pods-Runner Watch App.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner Watch App.debug.xcconfig"; path = "Target Support Files/Pods-Runner Watch App/Pods-Runner Watch App.debug.xcconfig"; sourceTree = "<group>"; };
4A9B7C102FDB0A1200F515B4 /* Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = "<group>"; };
4A9B7C112FDB0A1200F515B4 /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = "<group>"; };
66FB19032FDBC80100F515B4 /* Runner Watch App/FigmaHome/DFWatchFigmaTokens.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Runner Watch App/FigmaHome/DFWatchFigmaTokens.swift"; sourceTree = "<group>"; };
66FB19042FDBC80100F515B4 /* Runner Watch App/FigmaHome/DFWatchFigmaHomeViews.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Runner Watch App/FigmaHome/DFWatchFigmaHomeViews.swift"; sourceTree = "<group>"; };
66FB19052FDBC80100F515B4 /* Runner Watch App/FigmaHome/DFWatchFigmaDetailViews.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Runner Watch App/FigmaHome/DFWatchFigmaDetailViews.swift"; sourceTree = "<group>"; };
66FBE57E2FDA4F0E00F515B4 /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
66FBE58B2FDA4F0F00F515B4 /* Runner Watch App.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Runner Watch App.app"; sourceTree = BUILT_PRODUCTS_DIR; };
66FBE5A72FDA518C00F515B4 /* WidgetKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WidgetKit.framework; path = System/Library/Frameworks/WidgetKit.framework; sourceTree = SDKROOT; };
... ... @@ -63,6 +69,13 @@
/* End PBXFileReference section */
/* Begin PBXFileSystemSynchronizedBuildFileExceptionSet section */
66FB17B22FDB9E3200F515B4 /* Exceptions for "Runner" folder in "Runner Watch App" target */ = {
isa = PBXFileSystemSynchronizedBuildFileExceptionSet;
membershipExceptions = (
Shared/AppGroupConstants.swift,
);
target = 66FBE58A2FDA4F0F00F515B4 /* Runner Watch App */;
};
66FBE6202FDA6E7600F515B4 /* Exceptions for "Runner" folder in "Runner" target */ = {
isa = PBXFileSystemSynchronizedBuildFileExceptionSet;
membershipExceptions = (
... ... @@ -77,14 +90,13 @@
isa = PBXFileSystemSynchronizedRootGroup;
exceptions = (
66FBE6202FDA6E7600F515B4 /* Exceptions for "Runner" folder in "Runner" target */,
66FB17B22FDB9E3200F515B4 /* Exceptions for "Runner" folder in "Runner Watch App" target */,
);
path = Runner;
sourceTree = "<group>";
};
66FBE58F2FDA4F0F00F515B4 /* Runner Watch App */ = {
isa = PBXFileSystemSynchronizedRootGroup;
exceptions = (
);
path = "Runner Watch App";
sourceTree = "<group>";
};
... ... @@ -119,10 +131,21 @@
path = Flutter;
sourceTree = "<group>";
};
66FB19072FDBC80100F515B4 /* FigmaHome Preview Sources */ = {
isa = PBXGroup;
children = (
66FB19052FDBC80100F515B4 /* Runner Watch App/FigmaHome/DFWatchFigmaDetailViews.swift */,
66FB19042FDBC80100F515B4 /* Runner Watch App/FigmaHome/DFWatchFigmaHomeViews.swift */,
66FB19032FDBC80100F515B4 /* Runner Watch App/FigmaHome/DFWatchFigmaTokens.swift */,
);
name = "FigmaHome Preview Sources";
sourceTree = "<group>";
};
66FBE5752FDA4F0E00F515B4 = {
isa = PBXGroup;
children = (
66FBE5BF2FDA51A300F515B4 /* doublefeel-watch-app-extensionExtension.entitlements */,
66FB19072FDBC80100F515B4 /* FigmaHome Preview Sources */,
66FBE5802FDA4F0E00F515B4 /* Runner */,
66FBE58F2FDA4F0F00F515B4 /* Runner Watch App */,
4A9B7C122FDB0A1200F515B4 /* Flutter */,
... ... @@ -280,10 +303,14 @@
inputFileListPaths = (
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources-${CONFIGURATION}-input-files.xcfilelist",
);
inputPaths = (
);
name = "[CP] Copy Pods Resources";
outputFileListPaths = (
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources-${CONFIGURATION}-output-files.xcfilelist",
);
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources.sh\"\n";
... ... @@ -354,10 +381,14 @@
inputFileListPaths = (
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
);
inputPaths = (
);
name = "[CP] Embed Pods Frameworks";
outputFileListPaths = (
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
);
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
... ... @@ -371,10 +402,14 @@
inputFileListPaths = (
"${PODS_ROOT}/Target Support Files/Pods-Runner Watch App/Pods-Runner Watch App-frameworks-${CONFIGURATION}-input-files.xcfilelist",
);
inputPaths = (
);
name = "[CP] Embed Pods Frameworks";
outputFileListPaths = (
"${PODS_ROOT}/Target Support Files/Pods-Runner Watch App/Pods-Runner Watch App-frameworks-${CONFIGURATION}-output-files.xcfilelist",
);
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner Watch App/Pods-Runner Watch App-frameworks.sh\"\n";
... ... @@ -416,6 +451,9 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
66FB19022FDBC80100F515B4 /* Runner Watch App/FigmaHome/DFWatchFigmaDetailViews.swift in Sources */,
66FB19012FDBC80100F515B4 /* Runner Watch App/FigmaHome/DFWatchFigmaHomeViews.swift in Sources */,
66FB19002FDBC80100F515B4 /* Runner Watch App/FigmaHome/DFWatchFigmaTokens.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
... ... @@ -567,6 +605,7 @@
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.4.0;
ONLY_ACTIVE_ARCH = YES;
PRODUCT_BUNDLE_IDENTIFIER = com.luiz.doublefeel.watchkitapp;
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = watchos;
... ... @@ -670,6 +709,7 @@
"@executable_path/Frameworks",
);
MARKETING_VERSION = 2.5.0;
ONLY_ACTIVE_ARCH = YES;
OTHER_LDFLAGS = (
"$(inherited)",
"-framework",
... ...
... ... @@ -29,6 +29,9 @@ class AppDelegate: FlutterAppDelegate {
flutterEngine.run()
GeneratedPluginRegistrant.register(with: flutterEngine)
NativePigeonRegistrar.register(binaryMessenger: flutterEngine.binaryMessenger)
WatchConnectivityService.shared.activate()
HealthKitService.shared.startBackgroundObserversIfNeeded()
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
... ...
import Foundation
import HealthKit
/// Focused HealthKit query helper. It mirrors the original SwiftUI project data
/// coverage while avoiding dependencies on the old network and user modules.
final class HealthDataReader {
private let healthStore: HKHealthStore
init(healthStore: HKHealthStore) {
self.healthStore = healthStore
}
func collectRecentData(startDate: Date, endDate: Date) async throws -> NativeHealthSyncSummary {
async let hrv = fetchQuantitySamples(
identifier: .heartRateVariabilitySDNN,
dataType: .hrv,
unit: .secondUnit(with: .milli),
startDate: startDate,
endDate: endDate
)
async let heart = fetchHeartRateFamily(startDate: startDate, endDate: endDate)
async let oxygen = fetchQuantitySamples(
identifier: .oxygenSaturation,
dataType: .oxygenSaturation,
unit: .percent(),
startDate: startDate,
endDate: endDate
)
async let activeEnergy = fetchQuantitySamples(
identifier: .activeEnergyBurned,
dataType: .activeEnergy,
unit: .kilocalorie(),
startDate: startDate,
endDate: endDate
)
async let exercise = fetchQuantitySamples(
identifier: .appleExerciseTime,
dataType: .exercise,
unit: .minute(),
startDate: startDate,
endDate: endDate
)
async let stand = fetchQuantitySamples(
identifier: .appleStandTime,
dataType: .stand,
unit: .minute(),
startDate: startDate,
endDate: endDate
)
async let steps = fetchDailyCumulativeSamples(
identifier: .stepCount,
dataType: .steps,
unit: .count(),
startDate: startDate,
endDate: endDate
)
async let wristTemp = fetchQuantitySamples(
identifier: .appleSleepingWristTemperature,
dataType: .sleepingWristTemperature,
unit: .degreeCelsius(),
startDate: startDate,
endDate: endDate
)
async let respiratory = fetchQuantitySamples(
identifier: .respiratoryRate,
dataType: .respiratoryRate,
unit: HKUnit.count().unitDivided(by: .minute()),
startDate: startDate,
endDate: endDate
)
async let rhythm = fetchIrregularHeartRhythmEvents(startDate: startDate, endDate: endDate)
async let sleep = fetchSleepIntervals(startDate: startDate, endDate: endDate)
let hrvPoints = try await hrv
let heartPoints = try await heart
let oxygenPoints = try await oxygen
let activeEnergyPoints = try await activeEnergy
let exercisePoints = try await exercise
let standPoints = try await stand
let stepPoints = try await steps
let wristTempPoints = try await wristTemp
let respiratoryPoints = try await respiratory
let rhythmPoints = try await rhythm
let sleepIntervals = try await sleep
return NativeHealthSyncSummary(
commonCount: hrvPoints.count
+ heartPoints.count
+ oxygenPoints.count
+ activeEnergyPoints.count
+ exercisePoints.count
+ standPoints.count
+ stepPoints.count
+ wristTempPoints.count
+ respiratoryPoints.count
+ rhythmPoints.count,
sleepCount: sleepIntervals.count,
startedAt: startDate,
endedAt: endDate
)
}
func fetchLatestHRV() async throws -> Double? {
guard let type = NativeHealthTypeCatalog.quantity(.heartRateVariabilitySDNN) else {
throw NativeHealthKitError.invalidType("heartRateVariabilitySDNN")
}
let sample = try await fetchLatestQuantitySample(type: type)
return sample?.quantity.doubleValue(for: .secondUnit(with: .milli))
}
func fetchTodayStepCount() async throws -> Int {
guard let type = NativeHealthTypeCatalog.quantity(.stepCount) else {
throw NativeHealthKitError.invalidType("stepCount")
}
let startOfDay = Calendar.current.startOfDay(for: Date())
let predicate = HKQuery.predicateForSamples(withStart: startOfDay, end: Date())
return try await withCheckedThrowingContinuation { continuation in
let query = HKStatisticsQuery(
quantityType: type,
quantitySamplePredicate: predicate,
options: .cumulativeSum
) { _, statistics, error in
if let error {
continuation.resume(throwing: error)
return
}
let value = statistics?.sumQuantity()?.doubleValue(for: .count()) ?? 0
continuation.resume(returning: Int(value))
}
healthStore.execute(query)
}
}
private func fetchHeartRateFamily(startDate: Date, endDate: Date) async throws -> [NativeHealthDataPoint] {
async let heartRate = fetchQuantitySamples(
identifier: .heartRate,
dataType: .heartRate,
unit: HKUnit.count().unitDivided(by: .minute()),
startDate: startDate,
endDate: endDate
)
async let walking = fetchQuantitySamples(
identifier: .walkingHeartRateAverage,
dataType: .walkingHeartRate,
unit: HKUnit.count().unitDivided(by: .minute()),
startDate: startDate,
endDate: endDate
)
async let resting = fetchQuantitySamples(
identifier: .restingHeartRate,
dataType: .restingHeartRate,
unit: HKUnit.count().unitDivided(by: .minute()),
startDate: startDate,
endDate: endDate
)
return try await heartRate + walking + resting
}
private func fetchQuantitySamples(
identifier: HKQuantityTypeIdentifier,
dataType: NativeHealthDataType,
unit: HKUnit,
startDate: Date,
endDate: Date
) async throws -> [NativeHealthDataPoint] {
guard let type = NativeHealthTypeCatalog.quantity(identifier) else {
throw NativeHealthKitError.invalidType(identifier.rawValue)
}
let predicate = HKQuery.predicateForSamples(
withStart: startDate,
end: endDate,
options: .strictStartDate
)
let sort = NSSortDescriptor(key: HKSampleSortIdentifierStartDate, ascending: true)
return try await withCheckedThrowingContinuation { continuation in
let query = HKSampleQuery(
sampleType: type,
predicate: predicate,
limit: HKObjectQueryNoLimit,
sortDescriptors: [sort]
) { _, samples, error in
if let error {
continuation.resume(throwing: error)
return
}
let points = (samples as? [HKQuantitySample] ?? []).map { sample in
NativeHealthDataPoint(
dataType: dataType,
time: sample.startDate.timeIntervalSince1970,
value: sample.quantity.doubleValue(for: unit)
)
}
continuation.resume(returning: points)
}
healthStore.execute(query)
}
}
private func fetchDailyCumulativeSamples(
identifier: HKQuantityTypeIdentifier,
dataType: NativeHealthDataType,
unit: HKUnit,
startDate: Date,
endDate: Date
) async throws -> [NativeHealthDataPoint] {
guard let type = NativeHealthTypeCatalog.quantity(identifier) else {
throw NativeHealthKitError.invalidType(identifier.rawValue)
}
var interval = DateComponents()
interval.day = 1
let anchorDate = Calendar.current.startOfDay(for: startDate)
let predicate = HKQuery.predicateForSamples(withStart: startDate, end: endDate)
return try await withCheckedThrowingContinuation { continuation in
let query = HKStatisticsCollectionQuery(
quantityType: type,
quantitySamplePredicate: predicate,
options: .cumulativeSum,
anchorDate: anchorDate,
intervalComponents: interval
)
query.initialResultsHandler = { _, collection, error in
if let error {
continuation.resume(throwing: error)
return
}
var points: [NativeHealthDataPoint] = []
collection?.enumerateStatistics(from: startDate, to: endDate) { statistics, _ in
guard let value = statistics.sumQuantity()?.doubleValue(for: unit) else { return }
points.append(
NativeHealthDataPoint(
dataType: dataType,
time: statistics.startDate.timeIntervalSince1970,
value: value
)
)
}
continuation.resume(returning: points)
}
healthStore.execute(query)
}
}
private func fetchSleepIntervals(startDate: Date, endDate: Date) async throws -> [NativeSleepInterval] {
guard let type = NativeHealthTypeCatalog.category(.sleepAnalysis) else {
throw NativeHealthKitError.invalidType("sleepAnalysis")
}
let predicate = HKQuery.predicateForSamples(
withStart: startDate,
end: endDate,
options: .strictStartDate
)
let sort = NSSortDescriptor(key: HKSampleSortIdentifierStartDate, ascending: true)
return try await withCheckedThrowingContinuation { continuation in
let query = HKSampleQuery(
sampleType: type,
predicate: predicate,
limit: HKObjectQueryNoLimit,
sortDescriptors: [sort]
) { _, samples, error in
if let error {
continuation.resume(throwing: error)
return
}
let intervals = (samples as? [HKCategorySample] ?? []).map { sample in
NativeSleepInterval(
dataType: sample.value,
fromTime: sample.startDate.timeIntervalSince1970,
toTime: sample.endDate.timeIntervalSince1970
)
}
continuation.resume(returning: intervals)
}
healthStore.execute(query)
}
}
private func fetchIrregularHeartRhythmEvents(
startDate: Date,
endDate: Date
) async throws -> [NativeHealthDataPoint] {
guard let type = NativeHealthTypeCatalog.category(.irregularHeartRhythmEvent) else {
throw NativeHealthKitError.invalidType("irregularHeartRhythmEvent")
}
let predicate = HKQuery.predicateForSamples(
withStart: startDate,
end: endDate,
options: .strictStartDate
)
let sort = NSSortDescriptor(key: HKSampleSortIdentifierStartDate, ascending: true)
return try await withCheckedThrowingContinuation { continuation in
let query = HKSampleQuery(
sampleType: type,
predicate: predicate,
limit: HKObjectQueryNoLimit,
sortDescriptors: [sort]
) { _, samples, error in
if let error {
continuation.resume(throwing: error)
return
}
let points = (samples as? [HKCategorySample] ?? []).map { sample in
NativeHealthDataPoint(
dataType: .irregularHeartRhythm,
time: sample.startDate.timeIntervalSince1970,
value: Double(sample.value)
)
}
continuation.resume(returning: points)
}
healthStore.execute(query)
}
}
private func fetchLatestQuantitySample(type: HKQuantityType) async throws -> HKQuantitySample? {
let sort = NSSortDescriptor(key: HKSampleSortIdentifierEndDate, ascending: false)
return try await withCheckedThrowingContinuation { continuation in
let query = HKSampleQuery(
sampleType: type,
predicate: nil,
limit: 1,
sortDescriptors: [sort]
) { _, samples, error in
if let error {
continuation.resume(throwing: error)
return
}
continuation.resume(returning: samples?.first as? HKQuantitySample)
}
healthStore.execute(query)
}
}
}
... ...
import Foundation
import HealthKit
/// Native Apple Health service for the Flutter host API.
///
/// Responsibilities:
/// - request/read HealthKit permissions
/// - read the health data types used by the original SwiftUI app
/// - keep Watch complication values fresh in the shared App Group
/// - register background observers so HealthKit changes refresh local state
final class HealthKitService {
static let shared = HealthKitService()
private let healthStore = HKHealthStore()
private let syncStore = HealthSyncStateStore()
private lazy var reader = HealthDataReader(healthStore: healthStore)
private var observersStarted = false
private init() {}
var isHealthDataAvailable: Bool {
HKHealthStore.isHealthDataAvailable()
}
func requestAuthorization(completion: @escaping (Bool, Error?) -> Void) {
guard isHealthDataAvailable else {
completion(false, NativeHealthKitError.healthDataUnavailable)
return
}
healthStore.requestAuthorization(
toShare: NativeHealthTypeCatalog.writeTypes,
read: NativeHealthTypeCatalog.readTypes
) { success, error in
completion(success, error)
}
}
func shouldRequestAuthorization() async -> Bool {
guard isHealthDataAvailable else { return false }
do {
let status = try await healthStore.statusForAuthorizationRequest(
toShare: NativeHealthTypeCatalog.writeTypes,
read: NativeHealthTypeCatalog.readTypes
)
return status == .shouldRequest
} catch {
return true
}
}
func startBackgroundObserversIfNeeded() {
guard isHealthDataAvailable, !observersStarted else { return }
observersStarted = true
for sampleType in NativeHealthTypeCatalog.observedTypes {
enableBackgroundDelivery(for: sampleType)
let query = HKObserverQuery(sampleType: sampleType, predicate: nil) { [weak self] _, completion, error in
guard error == nil else {
completion()
return
}
Task {
await self?.handleObservedChange(sampleType)
completion()
}
}
healthStore.execute(query)
}
}
func performLocalSync() async -> NativeHealthSyncSummary {
guard isHealthDataAvailable else {
return NativeHealthSyncSummary(commonCount: 0, sleepCount: 0, startedAt: Date(), endedAt: Date())
}
let startDate = earliestStartDate()
let endDate = Date()
do {
let summary = try await reader.collectRecentData(startDate: startDate, endDate: endDate)
NativeHealthDataType.allCases
.filter { $0 != .unknown }
.forEach { syncStore.save(date: endDate, for: $0) }
await refreshSharedWatchValues()
startBackgroundObserversIfNeeded()
return summary
} catch {
await refreshSharedWatchValues()
return NativeHealthSyncSummary(commonCount: 0, sleepCount: 0, startedAt: startDate, endedAt: endDate)
}
}
func refreshSharedWatchValues() async {
do {
if let hrv = try await reader.fetchLatestHRV() {
AppGroupConstants.defaults?.set(hrv, forKey: AppGroupConstants.Key.latestHRV)
}
} catch {
// Keep the previous widget value when a single read fails.
}
do {
let steps = try await reader.fetchTodayStepCount()
AppGroupConstants.defaults?.set(steps, forKey: AppGroupConstants.Key.latestStepCount)
} catch {
// Keep the previous widget value when a single read fails.
}
}
private func earliestStartDate() -> Date {
NativeHealthDataType.allCases
.filter { $0 != .unknown }
.map { syncStore.startDate(for: $0) }
.min() ?? Calendar.current.startOfDay(for: Date())
}
private func enableBackgroundDelivery(for sampleType: HKSampleType) {
let frequency: HKUpdateFrequency = sampleType.identifier == HKQuantityTypeIdentifier.stepCount.rawValue
? .hourly
: .immediate
healthStore.enableBackgroundDelivery(for: sampleType, frequency: frequency) { success, error in
if let error {
print("HealthKit background delivery failed: \(sampleType.identifier), \(error.localizedDescription)")
} else {
print("HealthKit background delivery \(success ? "enabled" : "not enabled"): \(sampleType.identifier)")
}
}
}
private func handleObservedChange(_ sampleType: HKSampleType) async {
switch sampleType.identifier {
case HKQuantityTypeIdentifier.heartRateVariabilitySDNN.rawValue,
HKQuantityTypeIdentifier.stepCount.rawValue:
await refreshSharedWatchValues()
default:
break
}
if let type = NativeHealthDataType(sampleTypeIdentifier: sampleType.identifier) {
syncStore.save(date: Date(), for: type)
}
}
}
private extension NativeHealthDataType {
init?(sampleTypeIdentifier: String) {
switch sampleTypeIdentifier {
case HKQuantityTypeIdentifier.heartRateVariabilitySDNN.rawValue:
self = .hrv
case HKQuantityTypeIdentifier.heartRate.rawValue:
self = .heartRate
case HKQuantityTypeIdentifier.stepCount.rawValue:
self = .steps
case HKQuantityTypeIdentifier.oxygenSaturation.rawValue:
self = .oxygenSaturation
case HKQuantityTypeIdentifier.activeEnergyBurned.rawValue:
self = .activeEnergy
case HKQuantityTypeIdentifier.appleExerciseTime.rawValue:
self = .exercise
case HKQuantityTypeIdentifier.appleStandTime.rawValue:
self = .stand
case HKQuantityTypeIdentifier.appleSleepingWristTemperature.rawValue:
self = .sleepingWristTemperature
case HKQuantityTypeIdentifier.respiratoryRate.rawValue:
self = .respiratoryRate
case HKCategoryTypeIdentifier.sleepAnalysis.rawValue:
self = .sleep
case HKCategoryTypeIdentifier.irregularHeartRhythmEvent.rawValue:
self = .irregularHeartRhythm
default:
return nil
}
}
}
... ...
import Foundation
import HealthKit
enum NativeHealthKitError: LocalizedError {
case healthDataUnavailable
case invalidType(String)
case noData
var errorDescription: String? {
switch self {
case .healthDataUnavailable:
return "当前设备不支持 HealthKit"
case .invalidType(let identifier):
return "无效的健康数据类型:\(identifier)"
case .noData:
return "没有找到健康数据"
}
}
}
/// Raw values match the original SwiftUI project server contract.
enum NativeHealthDataType: Int, Codable, CaseIterable {
case unknown = 0
case hrv = 1
case heartRate = 2
case oxygenSaturation = 3
case activeEnergy = 4
case exercise = 5
case stand = 6
case steps = 7
case walkingHeartRate = 8
case restingHeartRate = 9
case sleepingHeartRate = 10
case sleepingWristTemperature = 11
case respiratoryRate = 12
case irregularHeartRhythm = 13
case sleep = 100
}
struct NativeHealthDataPoint: Codable {
let dataType: NativeHealthDataType
let time: TimeInterval
let value: Double
}
struct NativeSleepInterval: Codable {
let dataType: Int
let fromTime: TimeInterval
let toTime: TimeInterval
}
struct NativeHealthSyncSummary {
var commonCount = 0
var sleepCount = 0
var startedAt: Date
var endedAt: Date
}
enum NativeHealthTypeCatalog {
static var readTypes: Set<HKObjectType> {
var types = Set<HKObjectType>()
[
quantity(.heartRate),
quantity(.heartRateVariabilitySDNN),
quantity(.stepCount),
quantity(.oxygenSaturation),
quantity(.activeEnergyBurned),
quantity(.appleExerciseTime),
quantity(.appleStandTime),
quantity(.walkingHeartRateAverage),
quantity(.restingHeartRate),
quantity(.appleSleepingWristTemperature),
quantity(.respiratoryRate),
category(.sleepAnalysis),
category(.irregularHeartRhythmEvent),
].compactMap { $0 }.forEach { types.insert($0) }
types.insert(HKObjectType.activitySummaryType())
return types
}
static var writeTypes: Set<HKSampleType> {
// Kept from the original app. The current Flutter flow mostly reads data,
// but requesting this keeps the permission surface compatible.
Set([quantity(.stepCount)].compactMap { $0 })
}
static var observedTypes: Set<HKSampleType> {
Set([
quantity(.heartRate),
quantity(.heartRateVariabilitySDNN),
quantity(.stepCount),
quantity(.oxygenSaturation),
quantity(.activeEnergyBurned),
quantity(.appleExerciseTime),
quantity(.appleStandTime),
quantity(.appleSleepingWristTemperature),
quantity(.respiratoryRate),
category(.sleepAnalysis),
category(.irregularHeartRhythmEvent),
].compactMap { $0 })
}
static func quantity(_ identifier: HKQuantityTypeIdentifier) -> HKQuantityType? {
HKObjectType.quantityType(forIdentifier: identifier)
}
static func category(_ identifier: HKCategoryTypeIdentifier) -> HKCategoryType? {
HKObjectType.categoryType(forIdentifier: identifier)
}
}
... ...
import Foundation
/// Stores the last successful local HealthKit sync boundary.
/// This is intentionally independent from the old SwiftUI user/network layer.
struct HealthSyncStateStore {
private let defaults: UserDefaults
private let keyPrefix = "native_health_sync_latest_time_"
init(defaults: UserDefaults = .standard) {
self.defaults = defaults
}
func lastSyncDate(for type: NativeHealthDataType) -> Date? {
let timestamp = defaults.double(forKey: key(for: type))
return timestamp > 0 ? Date(timeIntervalSince1970: timestamp) : nil
}
func save(date: Date, for type: NativeHealthDataType) {
defaults.set(date.timeIntervalSince1970, forKey: key(for: type))
}
func startDate(for type: NativeHealthDataType, fallbackWeeks: Int = 1) -> Date {
if let date = lastSyncDate(for: type) {
return date
}
let fallback = Calendar.current.date(byAdding: .weekOfYear, value: -fallbackWeeks, to: Date())
return Calendar.current.startOfDay(for: fallback ?? Date())
}
private func key(for type: NativeHealthDataType) -> String {
"\(keyPrefix)\(type.rawValue)"
}
}
... ...
... ... @@ -26,6 +26,12 @@
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
<key>NSHealthShareUsageDescription</key>
<string>需要读取 Apple Health 中的心率、HRV、睡眠、步数、活动能量等数据,用于展示健康状态并同步到 Apple Watch。</string>
<key>NSHealthUpdateUsageDescription</key>
<string>需要写入少量健康数据权限以保持与旧版 Apple Health 同步流程兼容。</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>需要从系统相册选择图片,用于创建自定义 Apple Watch 表盘主题。</string>
<key>UIDesignRequiresCompatibility</key>
<true/>
<key>CADisableMinimumFrameDurationOnPhone</key>
... ...
... ... @@ -20,6 +20,12 @@
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
<key>NSHealthShareUsageDescription</key>
<string>需要读取 Apple Health 中的心率、HRV、睡眠、步数、活动能量等数据,用于展示健康状态并同步到 Apple Watch。</string>
<key>NSHealthUpdateUsageDescription</key>
<string>需要写入少量健康数据权限以保持与旧版 Apple Health 同步流程兼容。</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>需要从系统相册选择图片,用于创建自定义 Apple Watch 表盘主题。</string>
<key>UIDesignRequiresCompatibility</key>
<true/>
<key>CADisableMinimumFrameDurationOnPhone</key>
... ...
import Foundation
final class HealthKitHostApiImpl: HealthKitHostApi {
private let service: HealthKitService
init(service: HealthKitService = .shared) {
self.service = service
}
func checkHealthAppAuthorization() throws -> Bool {
service.isHealthDataAvailable && !runBlocking {
await self.service.shouldRequestAuthorization()
}
}
func getHealthServerAuthUrl() throws -> String {
// Apple Health authorization is system-managed, not URL based.
""
}
func requestHealthClientAuthorization() throws -> Bool {
let result = runAuthorizationRequest()
if result.success {
service.startBackgroundObserversIfNeeded()
Task {
await service.refreshSharedWatchValues()
}
}
if let error = result.error {
throw error
}
return result.success
}
func cancelHealthAppAuthorization() throws -> Bool {
// iOS does not let apps revoke HealthKit permission programmatically.
// Users must revoke access in Settings > Health > Data Access & Devices.
false
}
func performHealthUpload() throws -> HealthUploadResult {
let summary = runBlocking {
await self.service.performLocalSync()
}
return HealthUploadResult(
commonUploadSuccess: summary.commonCount >= 0,
sleepUploadSuccess: summary.sleepCount >= 0,
errorMessage: nil
)
}
private func runAuthorizationRequest() -> (success: Bool, error: Error?) {
var result: (Bool, Error?) = (false, nil)
let semaphore = DispatchSemaphore(value: 0)
service.requestAuthorization { success, error in
result = (success, error)
semaphore.signal()
}
waitForSemaphore(semaphore)
return result
}
}
private func runBlocking<T>(_ operation: @escaping () async -> T) -> T {
let semaphore = DispatchSemaphore(value: 0)
var result: T?
Task {
result = await operation()
semaphore.signal()
}
waitForSemaphore(semaphore)
return result!
}
private func waitForSemaphore(_ semaphore: DispatchSemaphore) {
if Thread.isMainThread {
while semaphore.wait(timeout: .now() + 0.05) == .timedOut {
RunLoop.main.run(mode: .default, before: Date(timeIntervalSinceNow: 0.05))
}
} else {
semaphore.wait()
}
}
... ...
import Flutter
import Foundation
import PhotosUI
import UIKit
import Vision
private let unsupported = "HealthKit / WearEngine / Alipay are not supported on iOS in this build."
final class HealthKitHostApiStub: HealthKitHostApi {
func checkHealthAppAuthorization() throws -> Bool { false }
func getHealthServerAuthUrl() throws -> String { "" }
func requestHealthClientAuthorization() throws -> Bool { false }
func cancelHealthAppAuthorization() throws -> Bool { false }
func performHealthUpload() throws -> HealthUploadResult {
HealthUploadResult(commonUploadSuccess: false, sleepUploadSuccess: false, errorMessage: unsupported)
}
}
final class WearEngineHostApiStub: WearEngineHostApi {
func hasAvailableDevices() throws -> Bool { false }
func checkConnectedDevice() throws -> WearDeviceInfo? { nil }
func registerMessageReceiver() throws -> Bool { false }
func sendTextMessage(message: String) throws -> Bool { false }
func sendWatchSyncPayload(jsonPayload: String) throws -> Bool { false }
func pickImageAndRemoveBackground() throws -> String? {
if #available(iOS 14.0, *) {
return WatchThemeImagePicker().pickImageAndRemoveBackground()
}
return nil
}
}
final class AlipayHostApiStub: AlipayHostApi {
func launchAliPay(prepayData: String) throws -> AliPayResultCode { .unsupported }
... ... @@ -36,203 +7,10 @@ final class AlipayHostApiStub: AlipayHostApi {
enum NativePigeonRegistrar {
static func register(binaryMessenger: FlutterBinaryMessenger) {
HealthKitHostApiSetup.setUp(binaryMessenger: binaryMessenger, api: HealthKitHostApiStub())
WearEngineHostApiSetup.setUp(binaryMessenger: binaryMessenger, api: WearEngineHostApiStub())
HealthKitHostApiSetup.setUp(binaryMessenger: binaryMessenger, api: HealthKitHostApiImpl())
WearEngineHostApiSetup.setUp(binaryMessenger: binaryMessenger, api: WearEngineHostApiImpl())
AlipayHostApiSetup.setUp(binaryMessenger: binaryMessenger, api: AlipayHostApiStub())
PlatformHostApiSetup.setUp(binaryMessenger: binaryMessenger, api: PlatformHostApiImpl())
}
}
@available(iOS 14.0, *)
private final class WatchThemeImagePicker: NSObject, PHPickerViewControllerDelegate {
private var continuation: CheckedContinuation<String?, Never>?
func pickImageAndRemoveBackground() -> String? {
if Thread.isMainThread {
return runOnMain()
}
var result: String?
let semaphore = DispatchSemaphore(value: 0)
DispatchQueue.main.async {
result = self.runOnMain()
semaphore.signal()
}
semaphore.wait()
return result
}
private func runOnMain() -> String? {
var configuration = PHPickerConfiguration(photoLibrary: .shared())
configuration.filter = .images
configuration.selectionLimit = 1
guard let presenter = UIApplication.shared.topMostViewController else {
return nil
}
let picker = PHPickerViewController(configuration: configuration)
picker.delegate = self
return waitForPickerResult(picker: picker, presenter: presenter)
}
private func waitForPickerResult(
picker: PHPickerViewController,
presenter: UIViewController
) -> String? {
var pickedPath: String?
let semaphore = DispatchSemaphore(value: 0)
Task { @MainActor in
pickedPath = await withCheckedContinuation { continuation in
self.continuation = continuation
presenter.present(picker, animated: true)
}
semaphore.signal()
}
while semaphore.wait(timeout: .now() + 0.05) == .timedOut {
RunLoop.main.run(mode: .default, before: Date(timeIntervalSinceNow: 0.05))
}
return pickedPath
}
nonisolated func picker(
_ picker: PHPickerViewController,
didFinishPicking results: [PHPickerResult]
) {
Task { @MainActor in
picker.dismiss(animated: true)
guard let provider = results.first?.itemProvider,
provider.canLoadObject(ofClass: UIImage.self) else {
continuation?.resume(returning: nil)
continuation = nil
return
}
provider.loadObject(ofClass: UIImage.self) { object, _ in
Task { @MainActor in
guard let image = object as? UIImage else {
self.continuation?.resume(returning: nil)
self.continuation = nil
return
}
let processed = await WatchThemeImageProcessor.removeBackground(from: image)
let path = WatchThemeImageProcessor.savePNG(processed)
self.continuation?.resume(returning: path)
self.continuation = nil
}
}
}
}
}
private enum WatchThemeImageProcessor {
static func removeBackground(from image: UIImage) async -> UIImage {
guard #available(iOS 17.0, *),
let cgImage = image.normalizedCGImage else {
return image
}
return await Task.detached(priority: .userInitiated) {
let request = VNGenerateForegroundInstanceMaskRequest()
let handler = VNImageRequestHandler(cgImage: cgImage)
do {
try handler.perform([request])
guard let observation = request.results?.first else {
return image
}
let mask = try observation.generateScaledMaskForImage(
forInstances: observation.allInstances,
from: handler
)
return composite(image: cgImage, mask: mask) ?? image
} catch {
return image
}
}.value
}
static func savePNG(_ image: UIImage) -> String? {
guard let data = image.pngData() else { return nil }
let directory = FileManager.default.temporaryDirectory
.appendingPathComponent("watch_theme", isDirectory: true)
do {
try FileManager.default.createDirectory(
at: directory,
withIntermediateDirectories: true
)
let file = directory.appendingPathComponent("\(UUID().uuidString).png")
try data.write(to: file, options: .atomic)
return file.path
} catch {
return nil
}
}
private static func composite(image: CGImage, mask: CVPixelBuffer) -> UIImage? {
let ciImage = CIImage(cgImage: image)
let ciMask = CIImage(cvPixelBuffer: mask)
guard let filter = CIFilter(name: "CIBlendWithMask") else {
return nil
}
filter.setValue(ciImage, forKey: kCIInputImageKey)
filter.setValue(ciMask, forKey: kCIInputMaskImageKey)
filter.setValue(
CIImage(color: .clear).cropped(to: ciImage.extent),
forKey: kCIInputBackgroundImageKey
)
guard let output = filter.outputImage,
let cgOutput = CIContext().createCGImage(output, from: ciImage.extent) else {
return nil
}
return UIImage(cgImage: cgOutput, scale: 1, orientation: .up)
}
}
private extension UIImage {
var normalizedCGImage: CGImage? {
if imageOrientation == .up, let cgImage {
return cgImage
}
let format = UIGraphicsImageRendererFormat.default()
format.scale = scale
let renderer = UIGraphicsImageRenderer(size: size, format: format)
return renderer.image { _ in
draw(in: CGRect(origin: .zero, size: size))
}.cgImage
}
}
private extension UIApplication {
var topMostViewController: UIViewController? {
connectedScenes
.compactMap { $0 as? UIWindowScene }
.flatMap(\.windows)
.first { $0.isKeyWindow }?
.rootViewController?
.topMostPresented
}
}
private extension UIViewController {
var topMostPresented: UIViewController {
if let presentedViewController {
return presentedViewController.topMostPresented
}
if let navigationController = self as? UINavigationController {
return navigationController.visibleViewController?.topMostPresented ?? navigationController
}
if let tabBarController = self as? UITabBarController {
return tabBarController.selectedViewController?.topMostPresented ?? tabBarController
}
return self
}
}
... ...
import Foundation
import PhotosUI
import UIKit
import Vision
final class WearEngineHostApiImpl: WearEngineHostApi {
private let watchService: WatchConnectivityService
init(watchService: WatchConnectivityService = .shared) {
self.watchService = watchService
}
func hasAvailableDevices() throws -> Bool {
watchService.hasAvailableDevices()
}
func checkConnectedDevice() throws -> WearDeviceInfo? {
watchService.currentDeviceInfo()
}
func registerMessageReceiver() throws -> Bool {
watchService.activate()
}
func sendTextMessage(message: String) throws -> Bool {
watchService.sendTextMessage(message)
}
func sendWatchSyncPayload(jsonPayload: String) throws -> Bool {
watchService.syncPayload(jsonPayload: jsonPayload)
}
func pickImageAndRemoveBackground() throws -> String? {
if #available(iOS 14.0, *) {
return WatchThemeImagePicker().pickImageAndRemoveBackground()
}
return nil
}
}
@available(iOS 14.0, *)
private final class WatchThemeImagePicker: NSObject, PHPickerViewControllerDelegate {
private var continuation: CheckedContinuation<String?, Never>?
func pickImageAndRemoveBackground() -> String? {
if Thread.isMainThread {
return runOnMain()
}
var result: String?
let semaphore = DispatchSemaphore(value: 0)
DispatchQueue.main.async {
result = self.runOnMain()
semaphore.signal()
}
semaphore.wait()
return result
}
private func runOnMain() -> String? {
var configuration = PHPickerConfiguration(photoLibrary: .shared())
configuration.filter = .images
configuration.selectionLimit = 1
guard let presenter = UIApplication.shared.topMostViewController else {
return nil
}
let picker = PHPickerViewController(configuration: configuration)
picker.delegate = self
return waitForPickerResult(picker: picker, presenter: presenter)
}
private func waitForPickerResult(
picker: PHPickerViewController,
presenter: UIViewController
) -> String? {
var pickedPath: String?
let semaphore = DispatchSemaphore(value: 0)
Task { @MainActor in
pickedPath = await withCheckedContinuation { continuation in
self.continuation = continuation
presenter.present(picker, animated: true)
}
semaphore.signal()
}
while semaphore.wait(timeout: .now() + 0.05) == .timedOut {
RunLoop.main.run(mode: .default, before: Date(timeIntervalSinceNow: 0.05))
}
return pickedPath
}
nonisolated func picker(
_ picker: PHPickerViewController,
didFinishPicking results: [PHPickerResult]
) {
Task { @MainActor in
picker.dismiss(animated: true)
guard let provider = results.first?.itemProvider,
provider.canLoadObject(ofClass: UIImage.self) else {
continuation?.resume(returning: nil)
continuation = nil
return
}
provider.loadObject(ofClass: UIImage.self) { object, _ in
Task { @MainActor in
guard let image = object as? UIImage else {
self.continuation?.resume(returning: nil)
self.continuation = nil
return
}
let processed = await WatchThemeImageProcessor.removeBackground(from: image)
let path = WatchThemeImageProcessor.savePNG(processed)
self.continuation?.resume(returning: path)
self.continuation = nil
}
}
}
}
}
private enum WatchThemeImageProcessor {
static func removeBackground(from image: UIImage) async -> UIImage {
guard #available(iOS 17.0, *),
let cgImage = image.normalizedCGImage else {
return image
}
return await Task.detached(priority: .userInitiated) {
let request = VNGenerateForegroundInstanceMaskRequest()
let handler = VNImageRequestHandler(cgImage: cgImage)
do {
try handler.perform([request])
guard let observation = request.results?.first else {
return image
}
let mask = try observation.generateScaledMaskForImage(
forInstances: observation.allInstances,
from: handler
)
return composite(image: cgImage, mask: mask) ?? image
} catch {
return image
}
}.value
}
static func savePNG(_ image: UIImage) -> String? {
guard let data = image.pngData() else { return nil }
let directory = FileManager.default.temporaryDirectory
.appendingPathComponent("watch_theme", isDirectory: true)
do {
try FileManager.default.createDirectory(
at: directory,
withIntermediateDirectories: true
)
let file = directory.appendingPathComponent("\(UUID().uuidString).png")
try data.write(to: file, options: .atomic)
return file.path
} catch {
return nil
}
}
private static func composite(image: CGImage, mask: CVPixelBuffer) -> UIImage? {
let ciImage = CIImage(cgImage: image)
let ciMask = CIImage(cvPixelBuffer: mask)
guard let filter = CIFilter(name: "CIBlendWithMask") else {
return nil
}
filter.setValue(ciImage, forKey: kCIInputImageKey)
filter.setValue(ciMask, forKey: kCIInputMaskImageKey)
filter.setValue(
CIImage(color: .clear).cropped(to: ciImage.extent),
forKey: kCIInputBackgroundImageKey
)
guard let output = filter.outputImage,
let cgOutput = CIContext().createCGImage(output, from: ciImage.extent) else {
return nil
}
return UIImage(cgImage: cgOutput, scale: 1, orientation: .up)
}
}
private extension UIImage {
var normalizedCGImage: CGImage? {
if imageOrientation == .up, let cgImage {
return cgImage
}
let format = UIGraphicsImageRendererFormat.default()
format.scale = scale
let renderer = UIGraphicsImageRenderer(size: size, format: format)
return renderer.image { _ in
draw(in: CGRect(origin: .zero, size: size))
}.cgImage
}
}
private extension UIApplication {
var topMostViewController: UIViewController? {
connectedScenes
.compactMap { $0 as? UIWindowScene }
.flatMap(\.windows)
.first { $0.isKeyWindow }?
.rootViewController?
.topMostPresented
}
}
private extension UIViewController {
var topMostPresented: UIViewController {
if let presentedViewController {
return presentedViewController.topMostPresented
}
if let navigationController = self as? UINavigationController {
return navigationController.visibleViewController?.topMostPresented ?? navigationController
}
if let tabBarController = self as? UITabBarController {
return tabBarController.selectedViewController?.topMostPresented ?? tabBarController
}
return self
}
}
... ...
... ... @@ -8,6 +8,10 @@
<true/>
<key>com.apple.developer.healthkit.background-delivery</key>
<true/>
<key>com.apple.security.application-groups</key>
<array>
<string>group.com.luiz.doublefeel.watchkitapp</string>
</array>
<key>com.apple.security.cs.allow-jit</key>
<true/>
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
... ...
... ... @@ -8,5 +8,9 @@
<true/>
<key>com.apple.developer.healthkit.background-delivery</key>
<true/>
<key>com.apple.security.application-groups</key>
<array>
<string>group.com.luiz.doublefeel.watchkitapp</string>
</array>
</dict>
</plist>
... ...
import Foundation
/// Shared container used by the iPhone app, Watch app, and Widget extension.
/// Keep these keys aligned with `ios/Runner Watch App` and the watch extension.
enum AppGroupConstants {
static let identifier = "group.com.luiz.doublefeel.watchkitapp"
enum Key {
static let latestHRV = "latestHRV"
static let latestHRVBaseline = "latestHRVBaseline"
static let latestStepCount = "latestStepCount"
static let myWatchTheme = "myWatchTheme"
static let otherWatchTheme = "otherWatchTheme"
static let myUserCharacter = "myUserCharacter"
}
static var defaults: UserDefaults? {
UserDefaults(suiteName: identifier)
}
}
... ...
import Foundation
import UIKit
import WatchConnectivity
/// iPhone-side WatchConnectivity wrapper.
/// This keeps Flutter-facing WearEngine APIs mapped to Apple Watch behavior.
final class WatchConnectivityService: NSObject {
static let shared = WatchConnectivityService()
private(set) var isPaired = false
private(set) var isReachable = false
private(set) var isWatchAppInstalled = false
private override init() {
super.init()
}
@discardableResult
func activate() -> Bool {
guard WCSession.isSupported() else { return false }
let session = WCSession.default
session.delegate = self
session.activate()
refreshState()
return true
}
func refreshState() {
guard WCSession.isSupported() else {
isPaired = false
isReachable = false
isWatchAppInstalled = false
return
}
let session = WCSession.default
isPaired = session.isPaired
isReachable = session.isReachable
isWatchAppInstalled = session.isWatchAppInstalled
}
func hasAvailableDevices() -> Bool {
activate()
refreshState()
return isPaired && isWatchAppInstalled
}
func currentDeviceInfo() -> WearDeviceInfo? {
activate()
refreshState()
guard isPaired else { return nil }
return WearDeviceInfo(
deviceId: nil,
deviceName: "Apple Watch",
isConnected: isReachable && isWatchAppInstalled
)
}
func sendTextMessage(_ message: String) -> Bool {
activate()
guard WCSession.default.isReachable else { return false }
WCSession.default.sendMessage(["message": message], replyHandler: nil) { error in
print("Watch message failed: \(error.localizedDescription)")
}
return true
}
func syncPayload(jsonPayload: String) -> Bool {
activate()
guard let data = jsonPayload.data(using: .utf8),
let object = try? JSONSerialization.jsonObject(with: data),
let payload = object as? [String: Any] else {
return false
}
persistThemeIfPresent(payload: payload, originalJSON: jsonPayload)
guard WCSession.isSupported(), WCSession.default.isPaired, WCSession.default.isWatchAppInstalled else {
return false
}
WCSession.default.transferUserInfo(payload)
try? WCSession.default.updateApplicationContext(payload)
sendWatchThemeChangedMessageIfNeeded(payload: payload)
return true
}
func sendWatchThemeChangedMessage() {
activate()
guard WCSession.default.isReachable else { return }
WCSession.default.sendMessage(["command": "watchThemeChanged"], replyHandler: nil) { error in
print("Watch theme change message failed: \(error.localizedDescription)")
}
}
private func sendWatchThemeChangedMessageIfNeeded(payload: [String: Any]) {
if payload["myWatchTheme"] != nil || payload["watchTheme"] != nil || payload["theme"] != nil {
sendWatchThemeChangedMessage()
}
}
private func persistThemeIfPresent(payload: [String: Any], originalJSON: String) {
if let theme = payload["myWatchTheme"] as? String {
WatchThemeStore.shared.saveThemeJSONString(theme)
return
}
let themeObject = payload["watchTheme"] ?? payload["theme"]
guard let themeObject,
JSONSerialization.isValidJSONObject(themeObject),
let data = try? JSONSerialization.data(withJSONObject: themeObject),
let json = String(data: data, encoding: .utf8) else {
if payload["isWatchTheme"] as? Bool == true {
WatchThemeStore.shared.saveThemeJSONString(originalJSON)
}
return
}
WatchThemeStore.shared.saveThemeJSONString(json)
}
}
extension WatchConnectivityService: WCSessionDelegate {
func session(
_ session: WCSession,
activationDidCompleteWith activationState: WCSessionActivationState,
error: Error?
) {
refreshState()
if let error {
print("WatchConnectivity activation failed: \(error.localizedDescription)")
}
}
func sessionDidBecomeInactive(_ session: WCSession) {
refreshState()
}
func sessionDidDeactivate(_ session: WCSession) {
refreshState()
session.activate()
}
func sessionReachabilityDidChange(_ session: WCSession) {
refreshState()
}
func session(_ session: WCSession, didReceiveMessage message: [String: Any]) {
if message["command"] as? String == "statusPulseRefresh" {
Task {
await HealthKitService.shared.refreshSharedWatchValues()
}
}
}
func session(
_ session: WCSession,
didReceiveMessage message: [String: Any],
replyHandler: @escaping ([String: Any]) -> Void
) {
if message["command"] as? String == "statusPulseRefresh" {
Task {
await HealthKitService.shared.refreshSharedWatchValues()
replyHandler(["success": true])
}
} else {
replyHandler(["success": true])
}
}
}
... ...
import Foundation
/// Shared Watch theme persistence.
/// The Watch app and Widget extension read this exact JSON string from App Group.
final class WatchThemeStore {
static let shared = WatchThemeStore()
private init() {}
@discardableResult
func saveThemeJSONString(_ json: String) -> Bool {
guard json.data(using: .utf8) != nil else { return false }
AppGroupConstants.defaults?.set(json, forKey: AppGroupConstants.Key.myWatchTheme)
return true
}
func clearTheme() {
AppGroupConstants.defaults?.removeObject(forKey: AppGroupConstants.Key.myWatchTheme)
}
}
... ...
c134254776a5ccd144c8a5e627d78c10
\ No newline at end of file
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98e8fb97e4d8fc6b27d73383f393c88ecd","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/TOCropViewController","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"TOCropViewController","INFOPLIST_FILE":"Target Support Files/TOCropViewController/ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"11.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"TOCropViewControllerBundle","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98b75d1048f68d3bb5985c770bd41c3964","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98646a08d73cb1b05edde4b2af727d2773","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/TOCropViewController","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"TOCropViewController","INFOPLIST_FILE":"Target Support Files/TOCropViewController/ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"11.0","PRODUCT_NAME":"TOCropViewControllerBundle","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98e9947f3bc60a9a376173a132421b2278","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98646a08d73cb1b05edde4b2af727d2773","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/TOCropViewController","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"TOCropViewController","INFOPLIST_FILE":"Target Support Files/TOCropViewController/ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"11.0","PRODUCT_NAME":"TOCropViewControllerBundle","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e983751bd601c66cda9f4c7c8b8aed619ef","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98c2917c5d20bcd9c007f37af8611de2a6","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e986afffa2cfd2f9512aa233f5cc63fb570","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98b3f0c66e128d272bb1288ea8780dc9b4","guid":"bfdfe7dc352907fc980b868725387e9803b9b1af2d5261479f7f93af035f84ad"},{"fileReference":"bfdfe7dc352907fc980b868725387e98943d94e1dca9370afcbc7d2e9f0abbad","guid":"bfdfe7dc352907fc980b868725387e98437b8113d0c0f7efa46ee29b722c79cb"},{"fileReference":"bfdfe7dc352907fc980b868725387e98e20d522eae8962c5e533c7c249450ba1","guid":"bfdfe7dc352907fc980b868725387e9895e3b6c1100dde567d8298da959ab892"},{"fileReference":"bfdfe7dc352907fc980b868725387e9875b23b6d8bdbfaadd15a183140d79f69","guid":"bfdfe7dc352907fc980b868725387e984f33ed908452ea332941903c0411b3ef"},{"fileReference":"bfdfe7dc352907fc980b868725387e98e0f2b7de1c1bc04e1ffe46c68ce33ad8","guid":"bfdfe7dc352907fc980b868725387e9826d2fa37af38d4d77992079be9e49bbe"},{"fileReference":"bfdfe7dc352907fc980b868725387e987b5a1086ea8be4d9b051d3ce7999d172","guid":"bfdfe7dc352907fc980b868725387e98c047cfdc484f9f46ed24109dd7964cab"},{"fileReference":"bfdfe7dc352907fc980b868725387e98d2785ef910e4b678590a3f07d27b2b26","guid":"bfdfe7dc352907fc980b868725387e98f17441845b3284079bd0a8af3efb9a94"},{"fileReference":"bfdfe7dc352907fc980b868725387e98436252fbeeed3265eb2cee95eb12a14a","guid":"bfdfe7dc352907fc980b868725387e9853a0872068d9802e4e7ef5e78684536a"},{"fileReference":"bfdfe7dc352907fc980b868725387e98a143bbb2156d53dcb475bf3467818a00","guid":"bfdfe7dc352907fc980b868725387e98cd6cb21ecbed9ef5249db5427b34f309"},{"fileReference":"bfdfe7dc352907fc980b868725387e989326c93489133be54ec1c5ce883f7f95","guid":"bfdfe7dc352907fc980b868725387e987086f18c8f04746040ad04d1495e5987"},{"fileReference":"bfdfe7dc352907fc980b868725387e98ab86e2bc0e96a3e47efb5fb4938bd05b","guid":"bfdfe7dc352907fc980b868725387e98deb061d220cf256291574c978433b9bd"},{"fileReference":"bfdfe7dc352907fc980b868725387e9899763c221a73e8f5860bb7297c2ecadf","guid":"bfdfe7dc352907fc980b868725387e98fb2ce2a54d4830268408f0da53955eb2"},{"fileReference":"bfdfe7dc352907fc980b868725387e984a55026799f54413f94c8d617bcee1bc","guid":"bfdfe7dc352907fc980b868725387e98dde0ca6b9e6a722f948c8fad38c22a95"},{"fileReference":"bfdfe7dc352907fc980b868725387e98f458e319d28f436491479bf5bc69bee4","guid":"bfdfe7dc352907fc980b868725387e982d460c5e8f6550cbc140db774b40752f"},{"fileReference":"bfdfe7dc352907fc980b868725387e9871360fc12faa4a6a46c3a5000eb78525","guid":"bfdfe7dc352907fc980b868725387e9827c4023f7130ab90afc00f1434340393"},{"fileReference":"bfdfe7dc352907fc980b868725387e980aa48715923cc7d3226a6daf26d515a7","guid":"bfdfe7dc352907fc980b868725387e981c750fb4de8e6f8f5bd31359a47e1e42"},{"fileReference":"bfdfe7dc352907fc980b868725387e98fea9ee4c790269b2b255fbda65d21cd5","guid":"bfdfe7dc352907fc980b868725387e980b4535c2eb5efe032efcd7ea90b8a666"},{"fileReference":"bfdfe7dc352907fc980b868725387e98aaded417427f59091e2272bec6813a42","guid":"bfdfe7dc352907fc980b868725387e980ba4c57bb4bd7bdcd21c04570f5a2e1f"},{"fileReference":"bfdfe7dc352907fc980b868725387e98f350348517c2cecb7d07354784c3bbc9","guid":"bfdfe7dc352907fc980b868725387e9811adc361209945de86a86b7fa1d7c3f8"},{"fileReference":"bfdfe7dc352907fc980b868725387e98a7ea5aa63b71073b08e7b415f74ed663","guid":"bfdfe7dc352907fc980b868725387e98492985e800f2423459efcfef10270692"},{"fileReference":"bfdfe7dc352907fc980b868725387e98247133e54555136c6e141473046f7e08","guid":"bfdfe7dc352907fc980b868725387e983b073fd21e782463067704b20c7aecb4"},{"fileReference":"bfdfe7dc352907fc980b868725387e9852f6cd5cdac1d0f84fae787b09c92c74","guid":"bfdfe7dc352907fc980b868725387e988c218a129ee9337c6f4c9fc9c31651bf"},{"fileReference":"bfdfe7dc352907fc980b868725387e98683dc56e238d9ccd0a2cd3b2d7b2e363","guid":"bfdfe7dc352907fc980b868725387e98a48f6a439944fbae7cbacffb33bb0a8f"},{"fileReference":"bfdfe7dc352907fc980b868725387e9845f0c14bbe37bdcf2d4d3c5941ee46f5","guid":"bfdfe7dc352907fc980b868725387e98d607d60302022bf876d39aa1bd69cdf0"},{"fileReference":"bfdfe7dc352907fc980b868725387e982672050c2030427d057debb1ea0c3df9","guid":"bfdfe7dc352907fc980b868725387e9849687d7ad52891093076ae6016a26da4"},{"fileReference":"bfdfe7dc352907fc980b868725387e98f474de454e032ecc10c533fc7fe161f0","guid":"bfdfe7dc352907fc980b868725387e982151f9e4c972b8a27c807903709a5cdd"},{"fileReference":"bfdfe7dc352907fc980b868725387e98a67747b5a77b0d264643563f3e216e7c","guid":"bfdfe7dc352907fc980b868725387e981e9f0720b7996cbbc5d1fed40f0912af"},{"fileReference":"bfdfe7dc352907fc980b868725387e986721d9a64a6948ad719ee0ca618d0d98","guid":"bfdfe7dc352907fc980b868725387e98daf88f1e9c8b88debe0db8a5a7ca7fc3"},{"fileReference":"bfdfe7dc352907fc980b868725387e98917e258ffc6052c99dbd63f347526ff6","guid":"bfdfe7dc352907fc980b868725387e98af9dace882a7c96a865bcef174d45792"},{"fileReference":"bfdfe7dc352907fc980b868725387e9814511951012b4191c2433d5a379eb9a1","guid":"bfdfe7dc352907fc980b868725387e9802f8dba89062e5de6c4c276fd7aa8b36"},{"fileReference":"bfdfe7dc352907fc980b868725387e987f3b32d8f963147c42e467390e392744","guid":"bfdfe7dc352907fc980b868725387e98b89ee2bf44b66263aa19e3fe8e7ae16a"}],"guid":"bfdfe7dc352907fc980b868725387e98311b3e21fcbc0f104d22472972191841","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e986dbfa2df59ddcae0f992dedaee8f3553","name":"TOCropViewController-TOCropViewControllerBundle","productReference":{"guid":"bfdfe7dc352907fc980b868725387e980e69b2358d36eb6c2616a1dbbe45f585","name":"TOCropViewControllerBundle.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
\ No newline at end of file
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9872c3a102c2f55c6f0eee5833107fac63","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite_darwin","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"sqflite_darwin","INFOPLIST_FILE":"Target Support Files/sqflite_darwin/ResourceBundle-sqflite_darwin_privacy-sqflite_darwin-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"12.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"sqflite_darwin_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98c19358e0d8fc0ff82ae574564065ed6b","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98d1a455bf7417c3aeb645db18ef108a94","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite_darwin","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"sqflite_darwin","INFOPLIST_FILE":"Target Support Files/sqflite_darwin/ResourceBundle-sqflite_darwin_privacy-sqflite_darwin-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"12.0","PRODUCT_NAME":"sqflite_darwin_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98afb87e3af52050c61b6e42f9c8a3883b","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98d1a455bf7417c3aeb645db18ef108a94","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite_darwin","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"sqflite_darwin","INFOPLIST_FILE":"Target Support Files/sqflite_darwin/ResourceBundle-sqflite_darwin_privacy-sqflite_darwin-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"12.0","PRODUCT_NAME":"sqflite_darwin_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98e4f2c507ffb311a50a95aa349d7e88ed","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98ac7d823da02db5d40c302ec94ea301a3","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e980633102ccc15b88a476e0ed7ba1ff323","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98d815319f529deb57d9d10e32525da1ef","guid":"bfdfe7dc352907fc980b868725387e988dcb3837b0f66cc15fcbb54ada836554"}],"guid":"bfdfe7dc352907fc980b868725387e98451cbac7e109149bf793647b9c462224","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e9883134bb5f399cb37a1eb075d4fea30d8","name":"sqflite_darwin-sqflite_darwin_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e9849c1d4b1200fcbf6f387f94121c7d0bf","name":"sqflite_darwin_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
\ No newline at end of file
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98493610a1174f3f4f738833de56d1328f","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/webview_flutter_wkwebview/webview_flutter_wkwebview-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/webview_flutter_wkwebview/webview_flutter_wkwebview-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"12.0","MODULEMAP_FILE":"Target Support Files/webview_flutter_wkwebview/webview_flutter_wkwebview.modulemap","ONLY_ACTIVE_ARCH":"NO","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"webview_flutter_wkwebview","PRODUCT_NAME":"webview_flutter_wkwebview","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98d6da72224a0002e2c8d4ad6a4140a101","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e986361f96ad5d0d9cdb22ee6aa8a152702","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/webview_flutter_wkwebview/webview_flutter_wkwebview-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/webview_flutter_wkwebview/webview_flutter_wkwebview-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"12.0","MODULEMAP_FILE":"Target Support Files/webview_flutter_wkwebview/webview_flutter_wkwebview.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"webview_flutter_wkwebview","PRODUCT_NAME":"webview_flutter_wkwebview","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e984cab3693a69eb1c553c791758183685f","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e986361f96ad5d0d9cdb22ee6aa8a152702","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/webview_flutter_wkwebview/webview_flutter_wkwebview-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/webview_flutter_wkwebview/webview_flutter_wkwebview-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"12.0","MODULEMAP_FILE":"Target Support Files/webview_flutter_wkwebview/webview_flutter_wkwebview.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"webview_flutter_wkwebview","PRODUCT_NAME":"webview_flutter_wkwebview","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98f480631d57f584ae82569893436b3d19","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98e100b69887046077a7bf8a9cf060b929","guid":"bfdfe7dc352907fc980b868725387e98faa2d77c0ef7eb87f7f8421e51c1b40a","headerVisibility":"public"}],"guid":"bfdfe7dc352907fc980b868725387e98a1e3dac75ef5081293a3cce12f493338","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e986ff29dbf77026e2fd214aacc48415f97","guid":"bfdfe7dc352907fc980b868725387e981de55d3cb88db838f3f39ff1797f33ce"},{"fileReference":"bfdfe7dc352907fc980b868725387e9820d9fff640378ae11fbdb2bba644e272","guid":"bfdfe7dc352907fc980b868725387e980d29368ece429919c8416c926d20a1b2"},{"fileReference":"bfdfe7dc352907fc980b868725387e98974b7125c3956adff996755a1b114006","guid":"bfdfe7dc352907fc980b868725387e98a435f50ff0ee12aa4ee277e694f2d126"},{"fileReference":"bfdfe7dc352907fc980b868725387e98fba6a1bdafdc072d807182e50958ac26","guid":"bfdfe7dc352907fc980b868725387e9818698cd69a8dd984343dd8261e191bfe"},{"fileReference":"bfdfe7dc352907fc980b868725387e9807fa3ed9a1c3d073fb8ed93058a7d538","guid":"bfdfe7dc352907fc980b868725387e987b439d64aac2afa2aed5d37bc7b53769"},{"fileReference":"bfdfe7dc352907fc980b868725387e9824e336744c0d7621c05a0223e51f3f66","guid":"bfdfe7dc352907fc980b868725387e9818e2a45f7d284b0dd902ab3482fc9edb"},{"fileReference":"bfdfe7dc352907fc980b868725387e9857e538de55d68f7ce78f685c1cd73410","guid":"bfdfe7dc352907fc980b868725387e98ffd34fa8ce89c4ce6d50467fae983432"},{"fileReference":"bfdfe7dc352907fc980b868725387e982da8ffef86ceaf65ed1f58ad933d36d8","guid":"bfdfe7dc352907fc980b868725387e98292490ce28c17daff90e0e782d73f784"},{"fileReference":"bfdfe7dc352907fc980b868725387e98ce9ba0fba9b5e90953d30114104d18bc","guid":"bfdfe7dc352907fc980b868725387e9834f73e42a69fc8b030848f28d070a368"},{"fileReference":"bfdfe7dc352907fc980b868725387e98a310832039952a0739ca7694f7ad758e","guid":"bfdfe7dc352907fc980b868725387e9898302af153ac1de4bd9428fca3bb8787"},{"fileReference":"bfdfe7dc352907fc980b868725387e9891936b22d4461ddb3e4165f1a75492dd","guid":"bfdfe7dc352907fc980b868725387e98ed9c33c1bf4f8fcd55bba266c67d062a"},{"fileReference":"bfdfe7dc352907fc980b868725387e9816b4b9d8465e3dd15680823043c778bb","guid":"bfdfe7dc352907fc980b868725387e98464a60c69b30cf4487e30f2e39b99e0a"},{"fileReference":"bfdfe7dc352907fc980b868725387e98ce6725437b5f43c0bd6ef1ccca2be082","guid":"bfdfe7dc352907fc980b868725387e984e94890557c10720442eefca0758fb7c"},{"fileReference":"bfdfe7dc352907fc980b868725387e986957040d9dced8053bb6e8f373a49a06","guid":"bfdfe7dc352907fc980b868725387e9801dbd92bfe45922f943df863b92756e6"},{"fileReference":"bfdfe7dc352907fc980b868725387e98a64df73b74f54e7dabd523cef6eea263","guid":"bfdfe7dc352907fc980b868725387e98695f5b329bfc5e6e8a12c3ef049fd84c"},{"fileReference":"bfdfe7dc352907fc980b868725387e985543c3a955f9d511d6e7251e7b4f383d","guid":"bfdfe7dc352907fc980b868725387e9872af5e523f4a9b056594a6e3963880d9"},{"fileReference":"bfdfe7dc352907fc980b868725387e98792b7a5a9cbe04e9c7b7d002ea638e83","guid":"bfdfe7dc352907fc980b868725387e98cabaf14c8327f9e739a1581549abcfba"},{"fileReference":"bfdfe7dc352907fc980b868725387e98e581dc86e636a128fcc7362ffedfe3b7","guid":"bfdfe7dc352907fc980b868725387e989b8f377ba0e2936c53f2b68c58a2468f"},{"fileReference":"bfdfe7dc352907fc980b868725387e9858cff6fc49e9b7824e719efa2a279eb8","guid":"bfdfe7dc352907fc980b868725387e98756f0f8bc30293af870fd37ef4e582e1"},{"fileReference":"bfdfe7dc352907fc980b868725387e980c66c03c8dc7e7282d701e3891d179cb","guid":"bfdfe7dc352907fc980b868725387e98a495bec27416fe0ef6d4c382d92bd37e"},{"fileReference":"bfdfe7dc352907fc980b868725387e98d93aa4a0ffddd857d5b5afe3f1789e0e","guid":"bfdfe7dc352907fc980b868725387e98dbe4cb3179877b97fd1cd1b9c7b0d657"},{"fileReference":"bfdfe7dc352907fc980b868725387e98755928d01ec4e183f6c6ad5dd1695876","guid":"bfdfe7dc352907fc980b868725387e98766ed63c43677a312cd576b6ecfa968c"},{"fileReference":"bfdfe7dc352907fc980b868725387e98efc85ac7c715782d5e65417979a219b9","guid":"bfdfe7dc352907fc980b868725387e9848489c7f67c84ff61cfb0ea1ec45d107"},{"fileReference":"bfdfe7dc352907fc980b868725387e988bef82569b24b5f6c612471073c56493","guid":"bfdfe7dc352907fc980b868725387e987259ad0ccd853df9dbdf20df62b01bf2"},{"fileReference":"bfdfe7dc352907fc980b868725387e98e98acb700f264a4d35f96d3e3a8e7192","guid":"bfdfe7dc352907fc980b868725387e9891cdd6b5f47999868b621c0cac86717d"},{"fileReference":"bfdfe7dc352907fc980b868725387e986bcadc9db0e23f509801ea7c18f17d3e","guid":"bfdfe7dc352907fc980b868725387e98bc9ffc416d43c25db0eba7374081cc24"},{"fileReference":"bfdfe7dc352907fc980b868725387e98272adc89cc3be2f5bac7bc2bd91672ed","guid":"bfdfe7dc352907fc980b868725387e989f67bad303f2c7a18d6663b9004e7f7f"},{"fileReference":"bfdfe7dc352907fc980b868725387e98dc6cb65d5dd165e65b7fbfcc7dc4421e","guid":"bfdfe7dc352907fc980b868725387e9862ed648bd55286684f95fcc2fdaa477b"},{"fileReference":"bfdfe7dc352907fc980b868725387e9833a097b5db2a7b844364a9486bb9616f","guid":"bfdfe7dc352907fc980b868725387e982552ba38ca9f397d8f80abfd80676bc3"},{"fileReference":"bfdfe7dc352907fc980b868725387e9811087db04d1b6ae8e562b162a7bde163","guid":"bfdfe7dc352907fc980b868725387e98d195323b373d63793cdede578ba29670"},{"fileReference":"bfdfe7dc352907fc980b868725387e987b63bd86e178dd1a4cd5fdf23764582d","guid":"bfdfe7dc352907fc980b868725387e989f08d7c9104548f24fc29052371ddadd"},{"fileReference":"bfdfe7dc352907fc980b868725387e98369effa6d8c6f49ab6a964ee2e41f64e","guid":"bfdfe7dc352907fc980b868725387e987ec55db088ddc2cfce45820bbd5664e8"},{"fileReference":"bfdfe7dc352907fc980b868725387e980a7f96f6c054a6b00bbe8edd3e5e02dc","guid":"bfdfe7dc352907fc980b868725387e9834fcf0d5ba9575313556f54273579df8"},{"fileReference":"bfdfe7dc352907fc980b868725387e9816892ac189479c50552d8df59101d469","guid":"bfdfe7dc352907fc980b868725387e980040a96cdcfcca3605783952ba372b88"},{"fileReference":"bfdfe7dc352907fc980b868725387e98d35f2da81360644fe00f5e7f5c5945d2","guid":"bfdfe7dc352907fc980b868725387e98447fdb1e6faad86182194fdfd9dfa3e4"},{"fileReference":"bfdfe7dc352907fc980b868725387e98176f3e1e76204f06691b39d943dccd53","guid":"bfdfe7dc352907fc980b868725387e982a39c7e1197817396058f11573213f14"},{"fileReference":"bfdfe7dc352907fc980b868725387e981ce32df686de5ed232b0c0ee3fcd4c2f","guid":"bfdfe7dc352907fc980b868725387e988fbe3b540434ba51c47bff24442a163e"},{"fileReference":"bfdfe7dc352907fc980b868725387e98e318650c8871ff158cbd37f8183721bc","guid":"bfdfe7dc352907fc980b868725387e98930b3ec41868a6d90b18606db9285027"},{"fileReference":"bfdfe7dc352907fc980b868725387e98386ba49f024aea24034bf28582dbecf4","guid":"bfdfe7dc352907fc980b868725387e98d259083229b4eed28de4a364a94222ca"},{"fileReference":"bfdfe7dc352907fc980b868725387e98d6c137c1d8c257e5b352ba97472bf7bf","guid":"bfdfe7dc352907fc980b868725387e981b32f3680c2b08fba50eeb04efa7482a"},{"fileReference":"bfdfe7dc352907fc980b868725387e98cb546a8f7bdc2047fbe4a99c1563566d","guid":"bfdfe7dc352907fc980b868725387e98eebbce98b73db8698586b64728bd46aa"},{"fileReference":"bfdfe7dc352907fc980b868725387e983a1098d9b7174aa713f6eb4dab0d9ad3","guid":"bfdfe7dc352907fc980b868725387e981fb47af3fa29c91f647f1ad2f650ec8d"},{"fileReference":"bfdfe7dc352907fc980b868725387e989c1cb5357bcb6e5e3a472f4e95d10dbd","guid":"bfdfe7dc352907fc980b868725387e98c65d236fa956eb88c1809b17ad57212b"}],"guid":"bfdfe7dc352907fc980b868725387e980055fbf3a11bc15129d28ebbe5cc1480","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e9867aa7825f197b5c58a57320b4ccdc64e","guid":"bfdfe7dc352907fc980b868725387e987ead9e15fc09a570554fa963eed1137d"}],"guid":"bfdfe7dc352907fc980b868725387e98da9cd099e7190758cfc42156c0f4e548","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"guid":"bfdfe7dc352907fc980b868725387e98b8defae1b39d33d1c1b6a7ec3e8cf51c","targetReference":"bfdfe7dc352907fc980b868725387e987c93e943aa0a38b5f6684beaf6b4a3a1"}],"guid":"bfdfe7dc352907fc980b868725387e987fd8694c1d36b88c99f78feb0d04dd25","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[{"guid":"bfdfe7dc352907fc980b868725387e989da425bb6d6d5d8dbb95e4afffb82217","name":"Flutter"},{"guid":"bfdfe7dc352907fc980b868725387e987c93e943aa0a38b5f6684beaf6b4a3a1","name":"webview_flutter_wkwebview-webview_flutter_wkwebview_privacy"}],"guid":"bfdfe7dc352907fc980b868725387e988efdc4dd0ac29b43123295eca853f4ed","name":"webview_flutter_wkwebview","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Swift","productReference":{"guid":"bfdfe7dc352907fc980b868725387e980823710353e0487822d6da09bf8d6254","name":"webview_flutter_wkwebview.framework","type":"product"},"productTypeIdentifier":"com.apple.product-type.framework","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":1}],"type":"standard"}
\ No newline at end of file
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98890adb2b2b98fc70f20de16996216002","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/image_picker_ios/image_picker_ios-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/image_picker_ios/image_picker_ios-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"12.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MODULEMAP_FILE":"Target Support Files/image_picker_ios/image_picker_ios.modulemap","ONLY_ACTIVE_ARCH":"NO","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"image_picker_ios","PRODUCT_NAME":"image_picker_ios","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e9864dece58fe8898e7f0b46391fe2d091f","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98221c7220f1a43556e154d0e84bf28676","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/image_picker_ios/image_picker_ios-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/image_picker_ios/image_picker_ios-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"12.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MODULEMAP_FILE":"Target Support Files/image_picker_ios/image_picker_ios.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"image_picker_ios","PRODUCT_NAME":"image_picker_ios","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e981b08ec94c515cc2b895c3ae9b4c03834","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98221c7220f1a43556e154d0e84bf28676","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/image_picker_ios/image_picker_ios-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/image_picker_ios/image_picker_ios-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"12.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MODULEMAP_FILE":"Target Support Files/image_picker_ios/image_picker_ios.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"image_picker_ios","PRODUCT_NAME":"image_picker_ios","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e982b03ce4519745554a82e5cffe58f25e2","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e9887cb71ec0a197ed2946aed6024d1dad1","guid":"bfdfe7dc352907fc980b868725387e98036d5aec29b54b7dd40e90098fa1a783","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e9892d65c42b66fdd6d568c50d0e873ca05","guid":"bfdfe7dc352907fc980b868725387e9884122a5495886f08a28766f6766ed12d","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e988061950042bff325e12ce6e07163bdf3","guid":"bfdfe7dc352907fc980b868725387e9878792dd23cc884d01a42ee927a76af76","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98314704ab4b99c3ad78a115a96a37a641","guid":"bfdfe7dc352907fc980b868725387e98ac4ce8757c9fefe5d0b2b79262ebbaeb","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e9874a54da90eac84404a6d42381d295f8d","guid":"bfdfe7dc352907fc980b868725387e9816643affd079e3f5d29a95b3d4ac8518","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e984ae39a9f5ce5801d979fc71dc42040a4","guid":"bfdfe7dc352907fc980b868725387e9833ff3f2578502bb2f88e252ec33d5fb3","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e986d4a8dba098c26b0e6cb26abd8e5b82f","guid":"bfdfe7dc352907fc980b868725387e9822ff4bab74a9180dcd559e6228895c11","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98001a1216fcba8a5077639ed936eedf22","guid":"bfdfe7dc352907fc980b868725387e984f06794600a72eff5e8b6bd1bfb1381c","headerVisibility":"public"}],"guid":"bfdfe7dc352907fc980b868725387e987c543487347cac13b6462fae62598e7f","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e981f6c3202c5e8ea43fabe23d4ac249aa8","guid":"bfdfe7dc352907fc980b868725387e9839e6fa4fb580d35845b455f3349208ed"},{"fileReference":"bfdfe7dc352907fc980b868725387e98d3353819e36d78fafa3c90288aa829a8","guid":"bfdfe7dc352907fc980b868725387e987f4d20a804f6cc54ba49f23a03bba3ff"},{"fileReference":"bfdfe7dc352907fc980b868725387e9879f3ff725c0c37a2851096c74b7aa01c","guid":"bfdfe7dc352907fc980b868725387e986de844193f467a67763cf085cbf548af"},{"fileReference":"bfdfe7dc352907fc980b868725387e98521a0cbc97fe403ba6dec7b4711eca98","guid":"bfdfe7dc352907fc980b868725387e980a470861055f808b55678e192587ba69"},{"fileReference":"bfdfe7dc352907fc980b868725387e98ef7fab25f1a8201b14fddc3cd791dc85","guid":"bfdfe7dc352907fc980b868725387e98fe1bc38033b4a880e7f645b78bb9d3b6"},{"fileReference":"bfdfe7dc352907fc980b868725387e98e866ceff35444fd643a35a36698bec12","guid":"bfdfe7dc352907fc980b868725387e98e0ab939fbafbd88342244f2b4a6d7f2e"},{"fileReference":"bfdfe7dc352907fc980b868725387e987c91f08e2ecb120f461660eb187051f2","guid":"bfdfe7dc352907fc980b868725387e986537e55fb8c991ac3f2f365064e71ccf"}],"guid":"bfdfe7dc352907fc980b868725387e98ce67561b68c83c2e24888c94da999914","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e9867aa7825f197b5c58a57320b4ccdc64e","guid":"bfdfe7dc352907fc980b868725387e98cf1fddec899afc6c9825c5eb5ec44493"}],"guid":"bfdfe7dc352907fc980b868725387e98434353ef3b38c3699582ee30b73fe6a8","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"guid":"bfdfe7dc352907fc980b868725387e9872ef11792920b3966776ea469c5092df","targetReference":"bfdfe7dc352907fc980b868725387e98082dc85da1fc941e5234c7cc1f11b27d"}],"guid":"bfdfe7dc352907fc980b868725387e9811e9e8a5f23273fd9234f4740a75ccb9","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[{"guid":"bfdfe7dc352907fc980b868725387e989da425bb6d6d5d8dbb95e4afffb82217","name":"Flutter"},{"guid":"bfdfe7dc352907fc980b868725387e98082dc85da1fc941e5234c7cc1f11b27d","name":"image_picker_ios-image_picker_ios_privacy"}],"guid":"bfdfe7dc352907fc980b868725387e981f000f066404b97b12e9c4ca84d38d0f","name":"image_picker_ios","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Objective-C-Plus-Plus","productReference":{"guid":"bfdfe7dc352907fc980b868725387e988e06e8c3685b7c12032d8059f412f4cb","name":"image_picker_ios.framework","type":"product"},"productTypeIdentifier":"com.apple.product-type.framework","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":1}],"type":"standard"}
\ No newline at end of file
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98a6093e67eab0c95af9b59197c88a1b6b","buildSettings":{"CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/permission_handler_apple/permission_handler_apple-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MACH_O_TYPE":"staticlib","MODULEMAP_FILE":"Target Support Files/permission_handler_apple/permission_handler_apple.modulemap","ONLY_ACTIVE_ARCH":"NO","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"permission_handler_apple","PRODUCT_NAME":"permission_handler_apple","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98519c0f1aabf34eacbf6f755b813f1496","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e982824e3afc8d872da1d8489aeef65d25c","buildSettings":{"CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/permission_handler_apple/permission_handler_apple-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MACH_O_TYPE":"staticlib","MODULEMAP_FILE":"Target Support Files/permission_handler_apple/permission_handler_apple.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"permission_handler_apple","PRODUCT_NAME":"permission_handler_apple","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98ec62137b0ee28ca4265944856877be27","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e982824e3afc8d872da1d8489aeef65d25c","buildSettings":{"CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/permission_handler_apple/permission_handler_apple-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MACH_O_TYPE":"staticlib","MODULEMAP_FILE":"Target Support Files/permission_handler_apple/permission_handler_apple.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"permission_handler_apple","PRODUCT_NAME":"permission_handler_apple","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e9832ebf16d88dad2729e444c32094aa46a","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e9884851084d3b02b53cd983fcffd818235","guid":"bfdfe7dc352907fc980b868725387e98a27a49b00be0ac981e5db9f07832563d","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e982e7f7319c09f94850a0723a216d70e04","guid":"bfdfe7dc352907fc980b868725387e989878394bd4334bc5b75f69e19db62bf2","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e9821ebb0fa53d0eb7ec2ab6f8ca9190624","guid":"bfdfe7dc352907fc980b868725387e98e1897e3d8aed17671192779f85b1c248","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98b5b86aa005335961c358b4a960923948","guid":"bfdfe7dc352907fc980b868725387e981450c482f5c290824d437888a184ae8b","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98cfa5ce0ae7f41afbcf0e57cd6de30680","guid":"bfdfe7dc352907fc980b868725387e98e4fc9878a7a9815c87ead588b617e13f","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e9822c393317084e36f2969d86ba20820cc","guid":"bfdfe7dc352907fc980b868725387e98931f24651cd163bcb560cc6bf0293fcb","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98265b9bc576c6643489aa71c5ef563885","guid":"bfdfe7dc352907fc980b868725387e98d4cfb9e1cbc63fdd6505f85f9a29df9c","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98fb31e35e6ff05f31942d41934fa09494","guid":"bfdfe7dc352907fc980b868725387e98603cbbc70b8dca9ffe9ae016055178e4","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e983e6c10cd55ac7b546e8a27a6d73df979","guid":"bfdfe7dc352907fc980b868725387e98de1a9153e9195626d2e18082bddd5583","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e986788e4d437e57069fdd7150780f6a1e9","guid":"bfdfe7dc352907fc980b868725387e984a1d400fa247fcd1999957a8682fc831","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98cafca9abb3305da2511ec18f0b22ed2c","guid":"bfdfe7dc352907fc980b868725387e98d32709d3a2dbac2c57e7e408179d0866","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e9828dae6c5d961eab3e33766ec57e27821","guid":"bfdfe7dc352907fc980b868725387e9852b51035de7e7268120a09bd61060c70","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e985dfbcd518b00fd83791970f4f841e5e7","guid":"bfdfe7dc352907fc980b868725387e98dc02dbc796bf1a1c79ffc8c7bf3cea72","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e981329cadec5aeca914b5940565930d22a","guid":"bfdfe7dc352907fc980b868725387e9851124daa4e024f512c6435eeca4166ec","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98447580bc8b8f4827c81d8360464b9e24","guid":"bfdfe7dc352907fc980b868725387e98d1ab4894e5f8a787a882b5c8c35da9b2","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98c2f59fe53444d666df46ecacb137334b","guid":"bfdfe7dc352907fc980b868725387e980ef321af2f9f2c834e49de13f3d55bc9","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e986dd8eb61c9df9c78ba64a9f79cace01e","guid":"bfdfe7dc352907fc980b868725387e98f0d31a429c82f17b0991aeffa8fa048c","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e988e29d9b40690bda08dda415d92f70602","guid":"bfdfe7dc352907fc980b868725387e98a42a0c118dedfd60efdbb4d16492c7b8","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98e2ab3143400e3260e6623fe39e99f7c0","guid":"bfdfe7dc352907fc980b868725387e98b3c686ca16e5bce7ed24eabc68c27a7a","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98af3e4ebd26dd264bce4333eb0e99f67c","guid":"bfdfe7dc352907fc980b868725387e9828accb1b5b23f919db719dddafe64428","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98a5999d69392be533721c9529b09cb914","guid":"bfdfe7dc352907fc980b868725387e981a70531bb3ca84e549cc6ba35f299fa1","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e9830ffd03b288e713d891e12ce5bfa5613","guid":"bfdfe7dc352907fc980b868725387e98d126da608ed212ace70c11a62a0c1637","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98e3b68579772f0ba934ed8c3c170aa0ab","guid":"bfdfe7dc352907fc980b868725387e98482d9659cbec4dc229fbd14d4097dbb0","headerVisibility":"public"}],"guid":"bfdfe7dc352907fc980b868725387e986a03fa67e33d48dce94be2b8eb2259ec","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e9859b1324343dc055e161d6c6533ee5e14","guid":"bfdfe7dc352907fc980b868725387e989514a07acecd425069c301ac83629a34"},{"fileReference":"bfdfe7dc352907fc980b868725387e9842f3aba82f1bbbea45fa42860b997a9c","guid":"bfdfe7dc352907fc980b868725387e98c5aeecdf68b8bd150764901c66af09a9"},{"fileReference":"bfdfe7dc352907fc980b868725387e98620c548ad1ca45b7c591297d1eb7c747","guid":"bfdfe7dc352907fc980b868725387e98845832e3ddc9b9efa82804181189873f"},{"fileReference":"bfdfe7dc352907fc980b868725387e988137c4db801b52960f300f0a7f9e66e1","guid":"bfdfe7dc352907fc980b868725387e988422c8d41a531ab0e5feda22b2729450"},{"fileReference":"bfdfe7dc352907fc980b868725387e9818cfd9e6e71005df38ef34975cee4bb2","guid":"bfdfe7dc352907fc980b868725387e98032b5432a99c409a15c23484d253896f"},{"fileReference":"bfdfe7dc352907fc980b868725387e9873b0ea1c477453db2a27395853e19d20","guid":"bfdfe7dc352907fc980b868725387e988ec79e04b31e29a98b9058ffe01c7fe6"},{"fileReference":"bfdfe7dc352907fc980b868725387e98c2f696a6e8c1b05591d7b9da435e3493","guid":"bfdfe7dc352907fc980b868725387e980e70a7a6c573b1b7ccd3e1d5ab5d07e2"},{"fileReference":"bfdfe7dc352907fc980b868725387e9800e74c7905cd82d36f9960af8978f5aa","guid":"bfdfe7dc352907fc980b868725387e983e056fb9529e4b65a3f33b7e5569c272"},{"fileReference":"bfdfe7dc352907fc980b868725387e98de774a6e299c64442144c3fcc58fa595","guid":"bfdfe7dc352907fc980b868725387e980341c01be7632895d55fd1dac2b54ca7"},{"fileReference":"bfdfe7dc352907fc980b868725387e985b42d8660810a9d6b3aad933347d7e57","guid":"bfdfe7dc352907fc980b868725387e9844b9c045f1529acb68ed027e0a48b614"},{"fileReference":"bfdfe7dc352907fc980b868725387e98520970053fda1908c06476b52a119a95","guid":"bfdfe7dc352907fc980b868725387e98b1b6e64bf6811487ed4c6e1384077226"},{"fileReference":"bfdfe7dc352907fc980b868725387e985b14ce293cf32a01a773054612405a14","guid":"bfdfe7dc352907fc980b868725387e981f2b6f47d148085767ead35147c92b0a"},{"fileReference":"bfdfe7dc352907fc980b868725387e98697a7d246f5ecbb804645bdff1bd0889","guid":"bfdfe7dc352907fc980b868725387e981850b344567e5543096f0a83d9eac0b2"},{"fileReference":"bfdfe7dc352907fc980b868725387e98b232dd09cbb7ffdcc50b18242e2d54aa","guid":"bfdfe7dc352907fc980b868725387e98ff4558f6e06cbb7fbd15dd015ca18854"},{"fileReference":"bfdfe7dc352907fc980b868725387e981311af37bc86faf3e55d86273af1dd44","guid":"bfdfe7dc352907fc980b868725387e983caf79b54a68f27872c153b09b7289cb"},{"fileReference":"bfdfe7dc352907fc980b868725387e989fc0bac42f87fe89196550b76dd1d39a","guid":"bfdfe7dc352907fc980b868725387e983550715f5dc47c6e779aeb12290a7c48"},{"fileReference":"bfdfe7dc352907fc980b868725387e984e9f512a43dc9832164c7190e5793552","guid":"bfdfe7dc352907fc980b868725387e985800f051739a623bb35f7cc22cbdb0d1"},{"fileReference":"bfdfe7dc352907fc980b868725387e98f4a28458a09df40a41a85843a00b9764","guid":"bfdfe7dc352907fc980b868725387e98f2203b5d78f4ac52bb8f2618d0202e75"},{"fileReference":"bfdfe7dc352907fc980b868725387e988c71f7c3f79685b588b764a4722910f6","guid":"bfdfe7dc352907fc980b868725387e983616275298339a71f8ce5405edcae646"},{"fileReference":"bfdfe7dc352907fc980b868725387e98629dea7138da4a42b26f2cec5f668c3e","guid":"bfdfe7dc352907fc980b868725387e9859b2f7d951b31f73b36500eee5613569"},{"fileReference":"bfdfe7dc352907fc980b868725387e98572e0d97aec70a0d968a775514e32a66","guid":"bfdfe7dc352907fc980b868725387e9800fc7c6d98b1d598e7f0946391c24f5b"}],"guid":"bfdfe7dc352907fc980b868725387e98be6229230a4715433df2f8e74fbafc5b","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e9867aa7825f197b5c58a57320b4ccdc64e","guid":"bfdfe7dc352907fc980b868725387e980797c2152e50219ee4196549bb34f857"}],"guid":"bfdfe7dc352907fc980b868725387e984d290968aff9eafa4ed5b85c80a8c610","type":"com.apple.buildphase.frameworks"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98fa0d11ed0b4e1a85c13d68e37d1547e0","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[{"guid":"bfdfe7dc352907fc980b868725387e989da425bb6d6d5d8dbb95e4afffb82217","name":"Flutter"},{"guid":"bfdfe7dc352907fc980b868725387e9802f35ab680609a626ebd2ddd692a3822","name":"permission_handler_apple-permission_handler_apple_privacy"}],"guid":"bfdfe7dc352907fc980b868725387e98ef10255b706f98e1e88fae00855b0968","name":"permission_handler_apple","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Objective-C-Plus-Plus","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98f8f53f8ba4165e76c7481b24262177ed","name":"permission_handler_apple.framework","type":"product"},"productTypeIdentifier":"com.apple.product-type.framework","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":1}],"type":"standard"}
\ No newline at end of file
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9868b77f49da4a0e0608aac8b3f5ae3e8e","buildSettings":{"CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/fluttertoast/fluttertoast-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/fluttertoast/fluttertoast-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MODULEMAP_FILE":"Target Support Files/fluttertoast/fluttertoast.modulemap","ONLY_ACTIVE_ARCH":"NO","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"fluttertoast","PRODUCT_NAME":"fluttertoast","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e980d95e38372e14dc164189e9e39c87ca3","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9852dc1371d317d5fc535ff1f306279566","buildSettings":{"CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/fluttertoast/fluttertoast-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/fluttertoast/fluttertoast-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MODULEMAP_FILE":"Target Support Files/fluttertoast/fluttertoast.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"fluttertoast","PRODUCT_NAME":"fluttertoast","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e980c7da66ee29e77cf7e3c5ef7b6bf0505","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9852dc1371d317d5fc535ff1f306279566","buildSettings":{"CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/fluttertoast/fluttertoast-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/fluttertoast/fluttertoast-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MODULEMAP_FILE":"Target Support Files/fluttertoast/fluttertoast.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"fluttertoast","PRODUCT_NAME":"fluttertoast","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e985d57597ee80c97031b19d4dd216a0459","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e983b44f07e560c85607ecdbac390035690","guid":"bfdfe7dc352907fc980b868725387e9898803a5367f403dbe7d7f50e52e158e4","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e988ce5db321c5b1a0e8d45a2033460a820","guid":"bfdfe7dc352907fc980b868725387e983964f34a71d25e0ad408764637201730","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e9810650f30d25a1a650eb486810140f78d","guid":"bfdfe7dc352907fc980b868725387e98c8914a1d8083fd11e9c788dbae30cb4b","headerVisibility":"public"}],"guid":"bfdfe7dc352907fc980b868725387e98f9f50c0f44c9e9758a8d2da9a3e9486d","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98000117cc7e8ad3178027b29f7f6baa74","guid":"bfdfe7dc352907fc980b868725387e98732bda2bf98a69eea7b638ba5caac9e6"},{"additionalCompilerOptions":"-DOS_OBJECT_USE_OBJC=0","fileReference":"bfdfe7dc352907fc980b868725387e987d8dc557a1cefbf1c0572194540f3c91","guid":"bfdfe7dc352907fc980b868725387e98c7baa8b56c358501b9b804d1da3607c1"},{"additionalCompilerOptions":"-DOS_OBJECT_USE_OBJC=0","fileReference":"bfdfe7dc352907fc980b868725387e98be100717715b68a43bd8a6ee4411da5c","guid":"bfdfe7dc352907fc980b868725387e98434a59f227df2853d124b2eb53dbd773"}],"guid":"bfdfe7dc352907fc980b868725387e98ff7ff0914d28d25b338598e51f35a22a","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e9867aa7825f197b5c58a57320b4ccdc64e","guid":"bfdfe7dc352907fc980b868725387e98fb70b41caaa71fca49a76d4a80225131"}],"guid":"bfdfe7dc352907fc980b868725387e9893a2f3917413e2f83f099b893b6202f2","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"guid":"bfdfe7dc352907fc980b868725387e982a8b2134dd93f2cb1d1331e935303944","targetReference":"bfdfe7dc352907fc980b868725387e985739272bce418ef50bd06c859612bad5"}],"guid":"bfdfe7dc352907fc980b868725387e98678ff57194ccd7dfda00aac2582b17b5","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[{"guid":"bfdfe7dc352907fc980b868725387e989da425bb6d6d5d8dbb95e4afffb82217","name":"Flutter"},{"guid":"bfdfe7dc352907fc980b868725387e985739272bce418ef50bd06c859612bad5","name":"fluttertoast-fluttertoast_privacy"}],"guid":"bfdfe7dc352907fc980b868725387e98839a1650b1f10605b2db52456c9e6468","name":"fluttertoast","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Objective-C","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98f09a1b962c84d31b7bec2ec6176b5c98","name":"fluttertoast.framework","type":"product"},"productTypeIdentifier":"com.apple.product-type.framework","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":1}],"type":"standard"}
\ No newline at end of file
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98bef0d6c2c15f5aafe14dc460dedf3fd4","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/image_cropper/image_cropper-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/image_cropper/image_cropper-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MODULEMAP_FILE":"Target Support Files/image_cropper/image_cropper.modulemap","ONLY_ACTIVE_ARCH":"NO","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"image_cropper","PRODUCT_NAME":"image_cropper","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98f7b93ecdbd3c8b9ea5616aa7b0d3fe18","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e980fd9e2f1733e15caec480c108e2f6d49","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/image_cropper/image_cropper-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/image_cropper/image_cropper-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MODULEMAP_FILE":"Target Support Files/image_cropper/image_cropper.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"image_cropper","PRODUCT_NAME":"image_cropper","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98f138ec1c7959dd17e955c99842ba6cd3","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e980fd9e2f1733e15caec480c108e2f6d49","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/image_cropper/image_cropper-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/image_cropper/image_cropper-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MODULEMAP_FILE":"Target Support Files/image_cropper/image_cropper.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"image_cropper","PRODUCT_NAME":"image_cropper","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e9822ce90530c07c0eef19816e1846a2b47","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e988def5567fb619d818c0e4033c07da2d0","guid":"bfdfe7dc352907fc980b868725387e983cd18188c90960b70b25f90c0640bc2e","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e9849e25a833cb0bed5dc8ebb5539d6cb74","guid":"bfdfe7dc352907fc980b868725387e9835ba3c68c353baaaaf8a192693f9fb9c","headerVisibility":"public"}],"guid":"bfdfe7dc352907fc980b868725387e9872651d2c8d8c194c061f4d51d19b24d0","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98e9ae364119d4ded1be782c9c2027f874","guid":"bfdfe7dc352907fc980b868725387e98fac879e253c603d20d42aefd7eba7e0c"},{"fileReference":"bfdfe7dc352907fc980b868725387e98c3a32b479b99fa0be5118bc2e4f2256c","guid":"bfdfe7dc352907fc980b868725387e98a90eca3f4ef58020f17eff6ee8594ca3"}],"guid":"bfdfe7dc352907fc980b868725387e984a515ab06e514badd4270f0dcfa41726","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e9867aa7825f197b5c58a57320b4ccdc64e","guid":"bfdfe7dc352907fc980b868725387e983584573e884ecb062bea67dd4b38239e"}],"guid":"bfdfe7dc352907fc980b868725387e988219f27d7669f834e95ed895d1bd8d70","type":"com.apple.buildphase.frameworks"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e9811cdaaa9080a7ba3ac6ee0e4bf44298c","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[{"guid":"bfdfe7dc352907fc980b868725387e989da425bb6d6d5d8dbb95e4afffb82217","name":"Flutter"},{"guid":"bfdfe7dc352907fc980b868725387e987a4af56e2729cecfad7b13d62a9a5fa4","name":"TOCropViewController"}],"guid":"bfdfe7dc352907fc980b868725387e98c7508c3a173f39338f076ef697b954c4","name":"image_cropper","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Objective-C","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98af2ff58bf1e7988af36cadaf5bb3d25c","name":"image_cropper.framework","type":"product"},"productTypeIdentifier":"com.apple.product-type.framework","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":1}],"type":"standard"}
\ No newline at end of file
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98c9406d4edd5339dd20198a367c290d36","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"path_provider_foundation","INFOPLIST_FILE":"Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"12.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"path_provider_foundation_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9815d476a49b818ac83bb7d89c034bc7b7","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e988fe63e2e9f76f78e56562689e1d41ffe","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"path_provider_foundation","INFOPLIST_FILE":"Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"12.0","PRODUCT_NAME":"path_provider_foundation_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e981373391d97c6cdcaed1361cf95934c31","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e988fe63e2e9f76f78e56562689e1d41ffe","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"path_provider_foundation","INFOPLIST_FILE":"Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"12.0","PRODUCT_NAME":"path_provider_foundation_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98652057b55c4e6ac5e390712a0bc77086","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e984823a2e0fba92681cf7792666b9bb36b","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e980148385ae73e13be88316704eda5e242","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e9889c48add7124ee091ff93ea9433486b7","guid":"bfdfe7dc352907fc980b868725387e98a792d5c00bccb4df88a188da3006a680"}],"guid":"bfdfe7dc352907fc980b868725387e98ebb3c9b4117be3b1e5bd198bd9957243","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e987ea64ee8d53085bf9edd1a57aaf8cbb5","name":"path_provider_foundation-path_provider_foundation_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e986e649604f74c414a7c2dbe5ef4cc4e75","name":"path_provider_foundation_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
\ No newline at end of file
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9850cc7fc2d23136fb4fac488d6c47df20","buildSettings":{"ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","INFOPLIST_FILE":"Target Support Files/Pods-Runner/Pods-Runner-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"13.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MACH_O_TYPE":"staticlib","MODULEMAP_FILE":"Target Support Files/Pods-Runner/Pods-Runner.modulemap","ONLY_ACTIVE_ARCH":"NO","OTHER_LDFLAGS":"$(inherited) -framework Flutter","OTHER_LIBTOOLFLAGS":"","PODS_ROOT":"$(SRCROOT)","PRODUCT_BUNDLE_IDENTIFIER":"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}","PRODUCT_NAME":"$(TARGET_NAME:c99extidentifier)","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98a2829366523dfaca9b75e5f7a72f6254","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98dc1a21852c7a085c7dd8f65cf0fa9907","buildSettings":{"ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","INFOPLIST_FILE":"Target Support Files/Pods-Runner/Pods-Runner-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"13.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MACH_O_TYPE":"staticlib","MODULEMAP_FILE":"Target Support Files/Pods-Runner/Pods-Runner.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","OTHER_LIBTOOLFLAGS":"","PODS_ROOT":"$(SRCROOT)","PRODUCT_BUNDLE_IDENTIFIER":"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}","PRODUCT_NAME":"$(TARGET_NAME:c99extidentifier)","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98e4a12d91909beabfb3ea44357e371c3a","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98f17abf55d75f35efcaf45a1185b085b6","buildSettings":{"ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","INFOPLIST_FILE":"Target Support Files/Pods-Runner/Pods-Runner-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"13.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MACH_O_TYPE":"staticlib","MODULEMAP_FILE":"Target Support Files/Pods-Runner/Pods-Runner.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","OTHER_LIBTOOLFLAGS":"","PODS_ROOT":"$(SRCROOT)","PRODUCT_BUNDLE_IDENTIFIER":"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}","PRODUCT_NAME":"$(TARGET_NAME:c99extidentifier)","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98cafdf8e5f53f5249fdb699a2c3732041","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e980ec6fbca7264a6936f2adfc48dd7f5bc","guid":"bfdfe7dc352907fc980b868725387e98c18583e54caccb23480e9ad821fcc5d4","headerVisibility":"public"}],"guid":"bfdfe7dc352907fc980b868725387e982b12e1a9514e59d182b3bdc6513b57e9","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98fed0970e703d355c9aff813f280aafdc","guid":"bfdfe7dc352907fc980b868725387e98d7195027851f4e0b20d9fe9fe9ba555f"}],"guid":"bfdfe7dc352907fc980b868725387e98913f65d029169dd43df72f5d47591332","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e9867aa7825f197b5c58a57320b4ccdc64e","guid":"bfdfe7dc352907fc980b868725387e981d396859bc3fe6a005f0edb170134b5c"}],"guid":"bfdfe7dc352907fc980b868725387e9826f150e187da19c7d1e421741141421b","type":"com.apple.buildphase.frameworks"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98be276f630606ffe5c387e92a6079d1a6","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[{"guid":"bfdfe7dc352907fc980b868725387e989da425bb6d6d5d8dbb95e4afffb82217","name":"Flutter"},{"guid":"bfdfe7dc352907fc980b868725387e987a4af56e2729cecfad7b13d62a9a5fa4","name":"TOCropViewController"},{"guid":"bfdfe7dc352907fc980b868725387e98839a1650b1f10605b2db52456c9e6468","name":"fluttertoast"},{"guid":"bfdfe7dc352907fc980b868725387e98c7508c3a173f39338f076ef697b954c4","name":"image_cropper"},{"guid":"bfdfe7dc352907fc980b868725387e981f000f066404b97b12e9c4ca84d38d0f","name":"image_picker_ios"},{"guid":"bfdfe7dc352907fc980b868725387e9830037b09fee48cfce1f8562d753688c8","name":"path_provider_foundation"},{"guid":"bfdfe7dc352907fc980b868725387e98ef10255b706f98e1e88fae00855b0968","name":"permission_handler_apple"},{"guid":"bfdfe7dc352907fc980b868725387e9828cab1f188854e0a973e6ff6905c5ffe","name":"shared_preferences_foundation"},{"guid":"bfdfe7dc352907fc980b868725387e981304d3d2169071b3ca365b19f5340b7c","name":"sqflite_darwin"},{"guid":"bfdfe7dc352907fc980b868725387e988efdc4dd0ac29b43123295eca853f4ed","name":"webview_flutter_wkwebview"}],"guid":"bfdfe7dc352907fc980b868725387e98312b4bc59bbbe2c06c205bf4da6737f5","name":"Pods-Runner","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Objective-C","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98699846e06e93b50cafdb00290784c775","name":"Pods_Runner.framework","type":"product"},"productTypeIdentifier":"com.apple.product-type.framework","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":1}],"type":"standard"}
\ No newline at end of file
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98144cd18850e477837c238075d5256ffe","buildSettings":{"ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","INFOPLIST_FILE":"Target Support Files/Pods-RunnerTests/Pods-RunnerTests-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"13.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MACH_O_TYPE":"staticlib","MODULEMAP_FILE":"Target Support Files/Pods-RunnerTests/Pods-RunnerTests.modulemap","ONLY_ACTIVE_ARCH":"NO","OTHER_LDFLAGS":"$(inherited) -framework Flutter","OTHER_LIBTOOLFLAGS":"","PODS_ROOT":"$(SRCROOT)","PRODUCT_BUNDLE_IDENTIFIER":"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}","PRODUCT_NAME":"$(TARGET_NAME:c99extidentifier)","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e980029bc42f3dda39154e9cd2e8ce213da","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e981b663a2c82f0220040296818ba53477e","buildSettings":{"ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","INFOPLIST_FILE":"Target Support Files/Pods-RunnerTests/Pods-RunnerTests-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"13.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MACH_O_TYPE":"staticlib","MODULEMAP_FILE":"Target Support Files/Pods-RunnerTests/Pods-RunnerTests.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","OTHER_LIBTOOLFLAGS":"","PODS_ROOT":"$(SRCROOT)","PRODUCT_BUNDLE_IDENTIFIER":"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}","PRODUCT_NAME":"$(TARGET_NAME:c99extidentifier)","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98d15fe13ffb666b223bfd6ee9f0a6138e","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98965b92d39d30a7872295adc2841cd1b1","buildSettings":{"ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES":"NO","CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","INFOPLIST_FILE":"Target Support Files/Pods-RunnerTests/Pods-RunnerTests-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"13.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MACH_O_TYPE":"staticlib","MODULEMAP_FILE":"Target Support Files/Pods-RunnerTests/Pods-RunnerTests.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","OTHER_LIBTOOLFLAGS":"","PODS_ROOT":"$(SRCROOT)","PRODUCT_BUNDLE_IDENTIFIER":"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}","PRODUCT_NAME":"$(TARGET_NAME:c99extidentifier)","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98d4a36e40c823f266ea5f9d0711ed6df0","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98e5e8bcdff29e5f8321be18f7989b4bc7","guid":"bfdfe7dc352907fc980b868725387e98ca9af5e2c54f437f9ebb0c203883ccae","headerVisibility":"public"}],"guid":"bfdfe7dc352907fc980b868725387e986e6b8bd91d07f2fb082ccd84c7dcacb1","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98022654f1ff78dd844d694dba2439dab2","guid":"bfdfe7dc352907fc980b868725387e9881f185e1672aa83b98d6e30b47f8f468"}],"guid":"bfdfe7dc352907fc980b868725387e98de09b1176c796343f1f9bcd422c73402","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e9867aa7825f197b5c58a57320b4ccdc64e","guid":"bfdfe7dc352907fc980b868725387e98e7ac2b91ee49764a75561cf994247683"}],"guid":"bfdfe7dc352907fc980b868725387e983bb5c38e7891bdb262f8e050f7d97030","type":"com.apple.buildphase.frameworks"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e987fddc24c35656402341de288e0688015","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[{"guid":"bfdfe7dc352907fc980b868725387e98312b4bc59bbbe2c06c205bf4da6737f5","name":"Pods-Runner"}],"guid":"bfdfe7dc352907fc980b868725387e98483832d3c820398e9d40e1a6904b03fe","name":"Pods-RunnerTests","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Objective-C","productReference":{"guid":"bfdfe7dc352907fc980b868725387e984f9f39caeddf64cc331db2b69d62aa63","name":"Pods_RunnerTests.framework","type":"product"},"productTypeIdentifier":"com.apple.product-type.framework","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":1}],"type":"standard"}
\ No newline at end of file
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98890adb2b2b98fc70f20de16996216002","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"image_picker_ios","INFOPLIST_FILE":"Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"12.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"image_picker_ios_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98c0a44ddda8105286060bf5c6003d30d7","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98221c7220f1a43556e154d0e84bf28676","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"image_picker_ios","INFOPLIST_FILE":"Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"12.0","PRODUCT_NAME":"image_picker_ios_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e986afd31b25e8bdbe54b555b3e819bed9a","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98221c7220f1a43556e154d0e84bf28676","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"image_picker_ios","INFOPLIST_FILE":"Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"12.0","PRODUCT_NAME":"image_picker_ios_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e984409b961219dd5170e42cf8af9d37b85","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98da3c51c4c853664165580f13a6f0fc5c","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98cf2603f400108d5d689d69e49210f9ea","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98d81fa81818b111128bdfcbfe37fe99cc","guid":"bfdfe7dc352907fc980b868725387e986f2cd484effb79da397fd484ac7cefd7"}],"guid":"bfdfe7dc352907fc980b868725387e9848f72b017e196244386c0f13d723c588","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e98082dc85da1fc941e5234c7cc1f11b27d","name":"image_picker_ios-image_picker_ios_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98cba567c8a049008de84f093e54e3191c","name":"image_picker_ios_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
\ No newline at end of file
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e989b8b5e6c332d83d94a43e8bb36f14a8b","buildSettings":{"ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME":"AccentColor","CLANG_ENABLE_OBJC_WEAK":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","IPHONEOS_DEPLOYMENT_TARGET":"12.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks","ONLY_ACTIVE_ARCH":"NO","SDKROOT":"iphoneos","TARGETED_DEVICE_FAMILY":"1,2"},"guid":"bfdfe7dc352907fc980b868725387e982cf0da236cf10d087750aa1434da9227","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98765d02cbdfd89645a23d200ad656f8af","buildSettings":{"ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME":"AccentColor","CLANG_ENABLE_OBJC_WEAK":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","IPHONEOS_DEPLOYMENT_TARGET":"12.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks","SDKROOT":"iphoneos","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES"},"guid":"bfdfe7dc352907fc980b868725387e98cc28f154213fd8181aa70d4c188a8335","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98765d02cbdfd89645a23d200ad656f8af","buildSettings":{"ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME":"AccentColor","CLANG_ENABLE_OBJC_WEAK":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","IPHONEOS_DEPLOYMENT_TARGET":"12.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks","SDKROOT":"iphoneos","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES"},"guid":"bfdfe7dc352907fc980b868725387e981f19fefc6e52ad9e4e005a2248234387","name":"Release"}],"buildPhases":[],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e989da425bb6d6d5d8dbb95e4afffb82217","name":"Flutter","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"","configurationName":"Release","provisioningStyle":0}],"type":"aggregate"}
\ No newline at end of file
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98c9406d4edd5339dd20198a367c290d36","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/path_provider_foundation/path_provider_foundation-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/path_provider_foundation/path_provider_foundation-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"12.0","MODULEMAP_FILE":"Target Support Files/path_provider_foundation/path_provider_foundation.modulemap","ONLY_ACTIVE_ARCH":"NO","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"path_provider_foundation","PRODUCT_NAME":"path_provider_foundation","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98ab88586633079f928287f370e8b6f07b","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e988fe63e2e9f76f78e56562689e1d41ffe","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/path_provider_foundation/path_provider_foundation-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/path_provider_foundation/path_provider_foundation-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"12.0","MODULEMAP_FILE":"Target Support Files/path_provider_foundation/path_provider_foundation.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"path_provider_foundation","PRODUCT_NAME":"path_provider_foundation","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e9880f884b2537bd891ed54ff6e3ab7d0ee","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e988fe63e2e9f76f78e56562689e1d41ffe","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/path_provider_foundation/path_provider_foundation-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/path_provider_foundation/path_provider_foundation-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"12.0","MODULEMAP_FILE":"Target Support Files/path_provider_foundation/path_provider_foundation.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"path_provider_foundation","PRODUCT_NAME":"path_provider_foundation","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e9858b9d941e76db42d349048c14af0e16e","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e986ad90640c2a87ccd2504ab539e324d34","guid":"bfdfe7dc352907fc980b868725387e98e40234757d04478dc54a213f59e845fa","headerVisibility":"public"}],"guid":"bfdfe7dc352907fc980b868725387e98450b40315711083d32b0ed949174ff28","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e989f750ed9e20f950ada8937f306c31206","guid":"bfdfe7dc352907fc980b868725387e98c025a6cef40a0e1fbdb6dfdf276171ba"},{"fileReference":"bfdfe7dc352907fc980b868725387e980e2570f90a57a95b7bd48b9bbed2305f","guid":"bfdfe7dc352907fc980b868725387e986dfc1b5ca512f6383be32a7124385963"},{"fileReference":"bfdfe7dc352907fc980b868725387e98616486747c74cf21aec11f2de8c74a26","guid":"bfdfe7dc352907fc980b868725387e98651a9c0b966fd508c01d94f4cad81677"}],"guid":"bfdfe7dc352907fc980b868725387e98f5d455158bacea210fd45e1a8f3245fc","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e9867aa7825f197b5c58a57320b4ccdc64e","guid":"bfdfe7dc352907fc980b868725387e9829f34398048903731961241124ac546e"}],"guid":"bfdfe7dc352907fc980b868725387e987ebedde198dc993f3ca38aec4ed08768","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"guid":"bfdfe7dc352907fc980b868725387e98234997a2811e55e2dfc23faf0b9d3093","targetReference":"bfdfe7dc352907fc980b868725387e987ea64ee8d53085bf9edd1a57aaf8cbb5"}],"guid":"bfdfe7dc352907fc980b868725387e98ac45f7d09c5ae0c1d8f7eb8e8ff004ab","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[{"guid":"bfdfe7dc352907fc980b868725387e989da425bb6d6d5d8dbb95e4afffb82217","name":"Flutter"},{"guid":"bfdfe7dc352907fc980b868725387e987ea64ee8d53085bf9edd1a57aaf8cbb5","name":"path_provider_foundation-path_provider_foundation_privacy"}],"guid":"bfdfe7dc352907fc980b868725387e9830037b09fee48cfce1f8562d753688c8","name":"path_provider_foundation","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Swift","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98177b75fe6f519d73b22b382cca137f1c","name":"path_provider_foundation.framework","type":"product"},"productTypeIdentifier":"com.apple.product-type.framework","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":1}],"type":"standard"}
\ No newline at end of file
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e987429100136c7cabdb1c53ff7846a606f","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"shared_preferences_foundation","INFOPLIST_FILE":"Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"12.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"shared_preferences_foundation_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e984b0ac60cfbf01a73090074fdbdad02ca","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9852aeec4c055e14df0bbd35d7207bef7b","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"shared_preferences_foundation","INFOPLIST_FILE":"Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"12.0","PRODUCT_NAME":"shared_preferences_foundation_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98497877ccb057c0b998adcc0f530ed6ce","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9852aeec4c055e14df0bbd35d7207bef7b","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"shared_preferences_foundation","INFOPLIST_FILE":"Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"12.0","PRODUCT_NAME":"shared_preferences_foundation_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98e4724ec3436be7e4ac6868968ad6eabe","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e983798725b834d0f662406381ca7bde3f2","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98b91701758ca9639610804a99b5398a8d","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98a7593e8608d9acecd27fab8927976749","guid":"bfdfe7dc352907fc980b868725387e98ac058063c77726eb1f0b10fdd8be15b5"}],"guid":"bfdfe7dc352907fc980b868725387e9837f959b90bb31b5e696f9a85cb667226","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e98e0be3b0d5ad56f1985578b1f97431765","name":"shared_preferences_foundation-shared_preferences_foundation_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98ad625504a4c1e61077bbfd33bd1d1785","name":"shared_preferences_foundation_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
\ No newline at end of file
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98a6093e67eab0c95af9b59197c88a1b6b","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"permission_handler_apple","INFOPLIST_FILE":"Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"9.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"permission_handler_apple_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98ab85269e3c32dd7d46dc5b2d71a85e10","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e982824e3afc8d872da1d8489aeef65d25c","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"permission_handler_apple","INFOPLIST_FILE":"Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"9.0","PRODUCT_NAME":"permission_handler_apple_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98339217bba3aa34a14079ebf1ecbb02d9","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e982824e3afc8d872da1d8489aeef65d25c","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"permission_handler_apple","INFOPLIST_FILE":"Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"9.0","PRODUCT_NAME":"permission_handler_apple_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9848aceabd21d4bd82521339f4bb06e5ef","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e9809610ca16e4ec0b8b4d2801aac5247b5","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98ec495162e4d17b980435a432aa070d1b","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e983baa8e01f584c554d49e2b2bb7cde084","guid":"bfdfe7dc352907fc980b868725387e98a0381af2bb4814d9d0a8e921781d06fe"}],"guid":"bfdfe7dc352907fc980b868725387e981f36d8e95984def1a3e1adcf78688e0d","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e9802f35ab680609a626ebd2ddd692a3822","name":"permission_handler_apple-permission_handler_apple_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e983e9a904e8a35cb34b69458780be142b3","name":"permission_handler_apple_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
\ No newline at end of file
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98e8fb97e4d8fc6b27d73383f393c88ecd","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","GCC_PREFIX_HEADER":"Target Support Files/TOCropViewController/TOCropViewController-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/TOCropViewController/TOCropViewController-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"11.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MODULEMAP_FILE":"Target Support Files/TOCropViewController/TOCropViewController.modulemap","ONLY_ACTIVE_ARCH":"NO","PRODUCT_MODULE_NAME":"TOCropViewController","PRODUCT_NAME":"TOCropViewController","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98605c35452afc21c9738f0c6828c71d26","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98646a08d73cb1b05edde4b2af727d2773","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","GCC_PREFIX_HEADER":"Target Support Files/TOCropViewController/TOCropViewController-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/TOCropViewController/TOCropViewController-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"11.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MODULEMAP_FILE":"Target Support Files/TOCropViewController/TOCropViewController.modulemap","PRODUCT_MODULE_NAME":"TOCropViewController","PRODUCT_NAME":"TOCropViewController","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e988c614f91f9b72052667099c32cbe6637","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98646a08d73cb1b05edde4b2af727d2773","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DEFINES_MODULE":"YES","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","GCC_PREFIX_HEADER":"Target Support Files/TOCropViewController/TOCropViewController-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/TOCropViewController/TOCropViewController-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"11.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MODULEMAP_FILE":"Target Support Files/TOCropViewController/TOCropViewController.modulemap","PRODUCT_MODULE_NAME":"TOCropViewController","PRODUCT_NAME":"TOCropViewController","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98a86be8a3d3fc9de309d9529a5e706f38","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98cb086915a5d7868551987b7c937b1a48","guid":"bfdfe7dc352907fc980b868725387e980a4dfaa604a5c973bd4cb5802c9855ab","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e980f947dccb1ab29394d270a9013b4bf6e","guid":"bfdfe7dc352907fc980b868725387e9863499551374c1c9ce8b5b4772d95cd02","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e984d282bd26faa86397beb095b7a3d376d","guid":"bfdfe7dc352907fc980b868725387e98729b04462a09cdeae6d1711d1cca87d8","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98797068857240200848cd110455f52a9a","guid":"bfdfe7dc352907fc980b868725387e98d7cc822e6ff7acf3dda3e6f4e7a05fe2","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e982bff5d3fdbb96b21480273a5f509d057","guid":"bfdfe7dc352907fc980b868725387e9869aa9e264a1406d02e21ec0e12782b90","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98a10957f0a1eeea88e6ac565e960e0f93","guid":"bfdfe7dc352907fc980b868725387e988c61a099ce5bda3b8c423bda9a71d3fe","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98f0694873f1892e94bb75f8e59dedc233","guid":"bfdfe7dc352907fc980b868725387e98969de66fdf5f5ba640fa0b4fd2b1983d","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e9856f118f2d46d97111b2a52e08ff662a3","guid":"bfdfe7dc352907fc980b868725387e9892aac1b38c1207e05c8972ff02b5577d","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98486b24fc8a92b9608b42c206e389e292","guid":"bfdfe7dc352907fc980b868725387e98a105d635d93b75cace7bbd27b86b8e73","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98c2614aa70647dc91f2899ce09cd44b2e","guid":"bfdfe7dc352907fc980b868725387e98fe2d3380e9a9e674f15a2ea4eea9bba1","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e98822752306ed24d8224a31589482a6a19","guid":"bfdfe7dc352907fc980b868725387e98311b7b43caef2eb83b6f84d293bffd52","headerVisibility":"public"}],"guid":"bfdfe7dc352907fc980b868725387e989823e64e9e00d6500db27cd56bb64766","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e9820af03ccb5b9dba937543436fde51ebc","guid":"bfdfe7dc352907fc980b868725387e98f2854e2e6c4b0efdadd510b4c7df08e9"},{"fileReference":"bfdfe7dc352907fc980b868725387e98589c232ca66350220c5b2b60af419691","guid":"bfdfe7dc352907fc980b868725387e98862f204c2217ec1fd0f6c2541cb1d7d2"},{"fileReference":"bfdfe7dc352907fc980b868725387e98967f8f000fb83e0cd182b51d0c53cdd4","guid":"bfdfe7dc352907fc980b868725387e98c4192ed237fd06694e27828b8f6eaa20"},{"fileReference":"bfdfe7dc352907fc980b868725387e98e6de2b9bdc36646e78a3b258eff7e562","guid":"bfdfe7dc352907fc980b868725387e98314f445b68467d09bc944f6977d6a1e5"},{"fileReference":"bfdfe7dc352907fc980b868725387e98817bdacacaa9c1fdca41497b32908163","guid":"bfdfe7dc352907fc980b868725387e9899e94270ee0a9fc2990fe6311d9e930c"},{"fileReference":"bfdfe7dc352907fc980b868725387e9816660fd5daec56af3b08e2cb899287bc","guid":"bfdfe7dc352907fc980b868725387e9874865e6e3e9d40fd69956302ea6a16b1"},{"fileReference":"bfdfe7dc352907fc980b868725387e9846c6e6f5c86b917d65fbec9b4dd09550","guid":"bfdfe7dc352907fc980b868725387e9830df155f1ccf9cf1ff06feda787776e8"},{"fileReference":"bfdfe7dc352907fc980b868725387e98af82120dd778704d0b071247289500e0","guid":"bfdfe7dc352907fc980b868725387e98a9f944ecbfbd6276045c1acd677fdc87"},{"fileReference":"bfdfe7dc352907fc980b868725387e98ce28fe5a13c196a6e1dc960861f6321d","guid":"bfdfe7dc352907fc980b868725387e9834639a5bdb4f50681ddcc792d8385313"},{"fileReference":"bfdfe7dc352907fc980b868725387e983daa75eb91fc04928c0658f9216185f7","guid":"bfdfe7dc352907fc980b868725387e983da8a6c162fb34e1a67bb7ab1d4b8cc7"}],"guid":"bfdfe7dc352907fc980b868725387e98b973c71a5c8d9944a2711af778a2c3b6","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e9867aa7825f197b5c58a57320b4ccdc64e","guid":"bfdfe7dc352907fc980b868725387e98269f2208e6af9ec57440cdb8e9a1fdb7"}],"guid":"bfdfe7dc352907fc980b868725387e988710db881c4cd7a5ab2e4ff5e3783e93","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"guid":"bfdfe7dc352907fc980b868725387e981ebf3826f47dbb7fd582b4ad06af832b","targetReference":"bfdfe7dc352907fc980b868725387e986dbfa2df59ddcae0f992dedaee8f3553"}],"guid":"bfdfe7dc352907fc980b868725387e98561889aae53f203fe8d20bd552b4212b","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[{"guid":"bfdfe7dc352907fc980b868725387e986dbfa2df59ddcae0f992dedaee8f3553","name":"TOCropViewController-TOCropViewControllerBundle"}],"guid":"bfdfe7dc352907fc980b868725387e987a4af56e2729cecfad7b13d62a9a5fa4","name":"TOCropViewController","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Objective-C-Plus-Plus","productReference":{"guid":"bfdfe7dc352907fc980b868725387e9874cf314b58ac20a75c1512ceb8885e00","name":"TOCropViewController.framework","type":"product"},"productTypeIdentifier":"com.apple.product-type.framework","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":1}],"type":"standard"}
\ No newline at end of file
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98493610a1174f3f4f738833de56d1328f","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/webview_flutter_wkwebview","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"webview_flutter_wkwebview","INFOPLIST_FILE":"Target Support Files/webview_flutter_wkwebview/ResourceBundle-webview_flutter_wkwebview_privacy-webview_flutter_wkwebview-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"12.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"webview_flutter_wkwebview_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98d80b51d8a17903a5a76f87e19f34a1cd","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e986361f96ad5d0d9cdb22ee6aa8a152702","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/webview_flutter_wkwebview","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"webview_flutter_wkwebview","INFOPLIST_FILE":"Target Support Files/webview_flutter_wkwebview/ResourceBundle-webview_flutter_wkwebview_privacy-webview_flutter_wkwebview-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"12.0","PRODUCT_NAME":"webview_flutter_wkwebview_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98a8eb84ead72688d86e0b3cc3812ea2c5","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e986361f96ad5d0d9cdb22ee6aa8a152702","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/webview_flutter_wkwebview","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"webview_flutter_wkwebview","INFOPLIST_FILE":"Target Support Files/webview_flutter_wkwebview/ResourceBundle-webview_flutter_wkwebview_privacy-webview_flutter_wkwebview-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"12.0","PRODUCT_NAME":"webview_flutter_wkwebview_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9866813aeb060709759078e48411f62903","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98be0c772f785cd7505ee510c2c1540ffc","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e9803c584675c731ccc36f8caaf4cf90695","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e982297aecfd80c36c1baf114e37d793b48","guid":"bfdfe7dc352907fc980b868725387e98da6537bf6fc10be793f792c58fe8ceb7"}],"guid":"bfdfe7dc352907fc980b868725387e988311469bb57dac0be242a449c4d5a54c","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e987c93e943aa0a38b5f6684beaf6b4a3a1","name":"webview_flutter_wkwebview-webview_flutter_wkwebview_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98a0c2ea56ea4c64a4495566659e5fdb93","name":"webview_flutter_wkwebview_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
\ No newline at end of file
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e987429100136c7cabdb1c53ff7846a606f","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/shared_preferences_foundation/shared_preferences_foundation-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/shared_preferences_foundation/shared_preferences_foundation-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"12.0","MODULEMAP_FILE":"Target Support Files/shared_preferences_foundation/shared_preferences_foundation.modulemap","ONLY_ACTIVE_ARCH":"NO","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"shared_preferences_foundation","PRODUCT_NAME":"shared_preferences_foundation","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e986f83bf1d86816a7afe713389f3b0794c","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9852aeec4c055e14df0bbd35d7207bef7b","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/shared_preferences_foundation/shared_preferences_foundation-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/shared_preferences_foundation/shared_preferences_foundation-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"12.0","MODULEMAP_FILE":"Target Support Files/shared_preferences_foundation/shared_preferences_foundation.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"shared_preferences_foundation","PRODUCT_NAME":"shared_preferences_foundation","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98c6ce66678a98cae8c935e06602a448e0","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9852aeec4c055e14df0bbd35d7207bef7b","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/shared_preferences_foundation/shared_preferences_foundation-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/shared_preferences_foundation/shared_preferences_foundation-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"12.0","MODULEMAP_FILE":"Target Support Files/shared_preferences_foundation/shared_preferences_foundation.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"shared_preferences_foundation","PRODUCT_NAME":"shared_preferences_foundation","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e980f59bc0c0df185b08d92e2afa6f35dda","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e983ec0af0b71e7c22c7e6379565b559d23","guid":"bfdfe7dc352907fc980b868725387e98e82259888cd400660e6ae15b115eb233","headerVisibility":"public"}],"guid":"bfdfe7dc352907fc980b868725387e9845bc282ec8aa7540f3a569c2631d21d5","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98e7a271e245866241ed9115730062d18c","guid":"bfdfe7dc352907fc980b868725387e983f910a660af8b1be8c5c9c125d4adb96"},{"fileReference":"bfdfe7dc352907fc980b868725387e987877bde4a16b804bce84a03009cd4a3f","guid":"bfdfe7dc352907fc980b868725387e98489a95f2019f3ec6e0acd5ba6de8991a"},{"fileReference":"bfdfe7dc352907fc980b868725387e98c00b68f3aa242f9059f2aa57ccc6a50b","guid":"bfdfe7dc352907fc980b868725387e989af2be92c6af9962a52aabe6c4751285"}],"guid":"bfdfe7dc352907fc980b868725387e98f14b5d6b6d6b0c465e2f1e0eaa6bc1cd","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e9867aa7825f197b5c58a57320b4ccdc64e","guid":"bfdfe7dc352907fc980b868725387e98475ba5d87573359032e9b06fd466a003"}],"guid":"bfdfe7dc352907fc980b868725387e9859badffc37928e123e98be61f8d11d71","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"guid":"bfdfe7dc352907fc980b868725387e9872e4e537a8c9a8da179493daa4c54b77","targetReference":"bfdfe7dc352907fc980b868725387e98e0be3b0d5ad56f1985578b1f97431765"}],"guid":"bfdfe7dc352907fc980b868725387e9876fd72010a5b056ae41fa1936cd39334","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[{"guid":"bfdfe7dc352907fc980b868725387e989da425bb6d6d5d8dbb95e4afffb82217","name":"Flutter"},{"guid":"bfdfe7dc352907fc980b868725387e98e0be3b0d5ad56f1985578b1f97431765","name":"shared_preferences_foundation-shared_preferences_foundation_privacy"}],"guid":"bfdfe7dc352907fc980b868725387e9828cab1f188854e0a973e6ff6905c5ffe","name":"shared_preferences_foundation","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Swift","productReference":{"guid":"bfdfe7dc352907fc980b868725387e9815af7ba71ce93f789a463577fc360420","name":"shared_preferences_foundation.framework","type":"product"},"productTypeIdentifier":"com.apple.product-type.framework","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":1}],"type":"standard"}
\ No newline at end of file
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9872c3a102c2f55c6f0eee5833107fac63","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/sqflite_darwin/sqflite_darwin-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/sqflite_darwin/sqflite_darwin-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"12.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MODULEMAP_FILE":"Target Support Files/sqflite_darwin/sqflite_darwin.modulemap","ONLY_ACTIVE_ARCH":"NO","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"sqflite_darwin","PRODUCT_NAME":"sqflite_darwin","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e98ee49f65d26d8a0c930cc03d16e0ffcc8","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98d1a455bf7417c3aeb645db18ef108a94","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/sqflite_darwin/sqflite_darwin-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/sqflite_darwin/sqflite_darwin-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"12.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MODULEMAP_FILE":"Target Support Files/sqflite_darwin/sqflite_darwin.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"sqflite_darwin","PRODUCT_NAME":"sqflite_darwin","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e987d3fcd01a34fff9e18dec0764bcc371e","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98d1a455bf7417c3aeb645db18ef108a94","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"NO","CODE_SIGN_IDENTITY[sdk=appletvos*]":"","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"","CODE_SIGN_IDENTITY[sdk=watchos*]":"","CURRENT_PROJECT_VERSION":"1","DYLIB_COMPATIBILITY_VERSION":"1","DYLIB_CURRENT_VERSION":"1","DYLIB_INSTALL_NAME_BASE":"@rpath","ENABLE_BITCODE":"NO","ENABLE_MODULE_VERIFIER":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","EXCLUDED_ARCHS[sdk=iphoneos*]":"$(inherited) armv7","EXCLUDED_ARCHS[sdk=iphonesimulator*]":"$(inherited) i386","FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\" $(inherited)","FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]":"\"/Users/changshouda/Documents/flutter_flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\" $(inherited)","GCC_PREFIX_HEADER":"Target Support Files/sqflite_darwin/sqflite_darwin-prefix.pch","GENERATE_INFOPLIST_FILE":"NO","INFOPLIST_FILE":"Target Support Files/sqflite_darwin/sqflite_darwin-Info.plist","INSTALL_PATH":"$(LOCAL_LIBRARY_DIR)/Frameworks","IPHONEOS_DEPLOYMENT_TARGET":"12.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks @loader_path/Frameworks","MODULEMAP_FILE":"Target Support Files/sqflite_darwin/sqflite_darwin.modulemap","OTHER_LDFLAGS":"$(inherited) -framework Flutter","PRODUCT_MODULE_NAME":"sqflite_darwin","PRODUCT_NAME":"sqflite_darwin","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","SWIFT_ACTIVE_COMPILATION_CONDITIONS":"$(inherited) ","SWIFT_INSTALL_OBJC_HEADER":"YES","SWIFT_VERSION":"5.0","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","VALID_ARCHS[sdk=iphonesimulator*]":"$(ARCHS_STANDARD)","VERSIONING_SYSTEM":"apple-generic","VERSION_INFO_PREFIX":""},"guid":"bfdfe7dc352907fc980b868725387e984def481d54810d0de6d3335b228b2a5d","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e986fb22dd51fa46a134940fe6eaca4c33f","guid":"bfdfe7dc352907fc980b868725387e98f74bfe561cdc142d140be02f934f1dd5","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e9884ed5320049c5deacc8bdde324892932","guid":"bfdfe7dc352907fc980b868725387e98ee11ff009cad5d58df14f6726361e05e"},{"fileReference":"bfdfe7dc352907fc980b868725387e986111af286522da9c91d0a23bb43d5789","guid":"bfdfe7dc352907fc980b868725387e985b56be77fd90c95178875fbdc9759ded"},{"fileReference":"bfdfe7dc352907fc980b868725387e98f522c2c362e0cb505e091d40b601b659","guid":"bfdfe7dc352907fc980b868725387e989fb03240d74c5b16d4df2090487dd870"},{"fileReference":"bfdfe7dc352907fc980b868725387e98fb3a48ecd51a149ca81f8964ffc2a633","guid":"bfdfe7dc352907fc980b868725387e98b0a98399ea089bec6015924fca214fd0"},{"fileReference":"bfdfe7dc352907fc980b868725387e98a6073c90465ff96a450936e03863b005","guid":"bfdfe7dc352907fc980b868725387e98a561fea4089e8e9aaa7d41e004a74551"},{"fileReference":"bfdfe7dc352907fc980b868725387e984af2acc58d476c23807b931ebdc6fcea","guid":"bfdfe7dc352907fc980b868725387e98e58eb8cea732f8da9eabee06f4760c04"},{"fileReference":"bfdfe7dc352907fc980b868725387e989792f90254ab248f54bb28aad5d10b96","guid":"bfdfe7dc352907fc980b868725387e989f7af140018ee6c1e6b210b20014ceb1"},{"fileReference":"bfdfe7dc352907fc980b868725387e980a6fc4f6d4839e6b447146ca7c886bce","guid":"bfdfe7dc352907fc980b868725387e98f23c703fb2f8f96105b7661f651d76b4"},{"fileReference":"bfdfe7dc352907fc980b868725387e989592a62ecd847bb19b5cd1307f338495","guid":"bfdfe7dc352907fc980b868725387e98b842866f43a58c7f2cd4903a46020f66"},{"fileReference":"bfdfe7dc352907fc980b868725387e980af65b71df82ad9c499004407ea24610","guid":"bfdfe7dc352907fc980b868725387e986769c43d062e13d97bdb26435517a0a9","headerVisibility":"public"},{"fileReference":"bfdfe7dc352907fc980b868725387e9888ff0ca83bb270d92e95e5a3a94f5b66","guid":"bfdfe7dc352907fc980b868725387e98dcd1d6833c3ba22cff192e9c729f402d"},{"fileReference":"bfdfe7dc352907fc980b868725387e98d5ab4adf06bad8786975c988a7c1aefc","guid":"bfdfe7dc352907fc980b868725387e98a8b10f256eab576dca45253c4e5eb01a"},{"fileReference":"bfdfe7dc352907fc980b868725387e9870b0a201c6540c238e46ebd2a3e3f6e2","guid":"bfdfe7dc352907fc980b868725387e984db51d20d4b10739c36207080362307d","headerVisibility":"public"}],"guid":"bfdfe7dc352907fc980b868725387e98cc465b98567e5be1dff8b7284a07e4e3","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98a3e0e5f6b6128baf5a0636ba98dd1bf7","guid":"bfdfe7dc352907fc980b868725387e985adaa6c4e40f33315ac0cec984200988"},{"fileReference":"bfdfe7dc352907fc980b868725387e98b5a595be9be31b486c76ff2f88085da9","guid":"bfdfe7dc352907fc980b868725387e9887c26a4ce919cd8e1da7ba74bc37f5e3"},{"fileReference":"bfdfe7dc352907fc980b868725387e98a0dd514539473bc748477a243ceff41d","guid":"bfdfe7dc352907fc980b868725387e98d14ae3cc83358b6ee88a1f9a4d5c6d3e"},{"fileReference":"bfdfe7dc352907fc980b868725387e9879bf3158d99ad90816a50571a9897a1b","guid":"bfdfe7dc352907fc980b868725387e983dbbed738f1be0937cd9105c2a700a04"},{"fileReference":"bfdfe7dc352907fc980b868725387e986fd10043962de1416443951e6f9a1223","guid":"bfdfe7dc352907fc980b868725387e98ea0fba00024403dbd3e85cac557df8e5"},{"fileReference":"bfdfe7dc352907fc980b868725387e9809c004b58d16a21de9d0533f0896ef75","guid":"bfdfe7dc352907fc980b868725387e9823662ee0e62201af4b56a8af77ae26e6"},{"fileReference":"bfdfe7dc352907fc980b868725387e98caf6cab5efa0d88fed7a44cb8c5eb823","guid":"bfdfe7dc352907fc980b868725387e98fed9191d2666c9cd3507583cd694c1a5"},{"fileReference":"bfdfe7dc352907fc980b868725387e98c83761c941d8fe8c3cf108bf0d3e3aa5","guid":"bfdfe7dc352907fc980b868725387e98af1eb69ffb28b93e0b654f9fa9aeec11"},{"fileReference":"bfdfe7dc352907fc980b868725387e98407416797503baf87cf9e40adefc896e","guid":"bfdfe7dc352907fc980b868725387e98e6b9ebef247a9cb276932d07fdf18195"}],"guid":"bfdfe7dc352907fc980b868725387e9837c2f0a37c50e959478519168227e455","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e9867aa7825f197b5c58a57320b4ccdc64e","guid":"bfdfe7dc352907fc980b868725387e982f461d51c284a55b8f869fc9092ae5dc"}],"guid":"bfdfe7dc352907fc980b868725387e98dd47f73652ff7b522b7942f6a87afd23","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"guid":"bfdfe7dc352907fc980b868725387e98d17544c34b81de618417de5f9c91b4ec","targetReference":"bfdfe7dc352907fc980b868725387e9883134bb5f399cb37a1eb075d4fea30d8"}],"guid":"bfdfe7dc352907fc980b868725387e98e60a652c76bfee084293e97b00176921","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[{"guid":"bfdfe7dc352907fc980b868725387e989da425bb6d6d5d8dbb95e4afffb82217","name":"Flutter"},{"guid":"bfdfe7dc352907fc980b868725387e9883134bb5f399cb37a1eb075d4fea30d8","name":"sqflite_darwin-sqflite_darwin_privacy"}],"guid":"bfdfe7dc352907fc980b868725387e981304d3d2169071b3ca365b19f5340b7c","name":"sqflite_darwin","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Objective-C-Plus-Plus","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98dbbec3eebed26c79cc653713be723aba","name":"sqflite_darwin.framework","type":"product"},"productTypeIdentifier":"com.apple.product-type.framework","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":1},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":1}],"type":"standard"}
\ No newline at end of file
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9868b77f49da4a0e0608aac8b3f5ae3e8e","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/fluttertoast","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"fluttertoast","INFOPLIST_FILE":"Target Support Files/fluttertoast/ResourceBundle-fluttertoast_privacy-fluttertoast-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"9.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"fluttertoast_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98e953ed566e91deecfd81b8d86775557e","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9852dc1371d317d5fc535ff1f306279566","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/fluttertoast","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"fluttertoast","INFOPLIST_FILE":"Target Support Files/fluttertoast/ResourceBundle-fluttertoast_privacy-fluttertoast-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"9.0","PRODUCT_NAME":"fluttertoast_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98aaf3428a047eceae78d5066e966725e2","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9852dc1371d317d5fc535ff1f306279566","buildSettings":{"CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/fluttertoast","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"fluttertoast","INFOPLIST_FILE":"Target Support Files/fluttertoast/ResourceBundle-fluttertoast_privacy-fluttertoast-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"9.0","PRODUCT_NAME":"fluttertoast_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98f579fcd0430145ff5c26ebb561295b61","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e9841303d8c9e72995b61c742fccb2bd21c","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e984d28eac7bb4cfd0b6e33b38e608751b1","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98929a0306e3d8a8e4d4e29ee5e8aefe33","guid":"bfdfe7dc352907fc980b868725387e98eed99eb74e9521e86d82963f3fcafaa0"}],"guid":"bfdfe7dc352907fc980b868725387e98b5f9c12d7a063695e354f05b3e8b7e8e","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e985739272bce418ef50bd06c859612bad5","name":"fluttertoast-fluttertoast_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e989d4bb598ca0a92e1d0f3a4ef0157bf7e","name":"fluttertoast_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
\ No newline at end of file
{"guid":"dc4b70c03e8043e50e38f2068887b1d4","name":"Pods","path":"/Users/changshouda/Documents/FlutterProject/doublefeel_flutter/ios/Pods/Pods.xcodeproj/project.xcworkspace","projects":["PROJECT@v11_mod=0c3f0943d4c7c3601816831d5458ddcd_hash=bfdfe7dc352907fc980b868725387e98plugins=1OJSG6M1FOV3XYQCBH7Z29RZ0FPR9XDE1"]}
\ No newline at end of file
... ... @@ -7,6 +7,7 @@ import '../../core/network/api/health_api.dart';
import '../../core/network/api/interaction_api.dart';
import '../../core/network/api/obs_api.dart';
import '../../core/network/api/pay_api.dart';
import '../../core/network/api/theme_api.dart';
import '../../core/network/api/user_api.dart';
import '../../core/network/api/vip_api.dart';
import '../../core/network/dio_client.dart';
... ... @@ -86,6 +87,11 @@ void registerConfigDeps(DioClient dioClient) {
Get.lazyPut(() => ConfigApi(dioClient), fenix: true);
}
/// Watch theme API.
void registerThemeDeps(DioClient dioClient) {
Get.lazyPut(() => ThemeApi(dioClient), fenix: true);
}
/// Partner interaction API and wear engine.
void registerInteractionDeps(
DioClient dioClient,
... ...
... ... @@ -37,6 +37,7 @@ class InitialBinding extends Bindings {
registerHealthDeps(dioClient);
registerPayDeps(dioClient);
registerConfigDeps(dioClient);
registerThemeDeps(dioClient);
registerInteractionDeps(dioClient, userPrefs);
registerObsDeps(dioClient);
}
... ...
import 'package:get/get.dart';
import '../../../../core/network/api/theme_api.dart';
import '../controllers/create_watch_theme_controller.dart';
import '../controllers/custom_watch_theme_preview_controller.dart';
import '../controllers/watch_theme_controller.dart';
... ... @@ -8,7 +9,9 @@ import '../controllers/watch_theme_preview_controller.dart';
class WatchThemeBinding extends Bindings {
@override
void dependencies() {
Get.lazyPut<WatchThemeController>(() => WatchThemeController());
Get.lazyPut<WatchThemeController>(
() => WatchThemeController(Get.find<ThemeApi>()),
);
}
}
... ... @@ -16,7 +19,7 @@ class WatchThemePreviewBinding extends Bindings {
@override
void dependencies() {
Get.lazyPut<WatchThemePreviewController>(
() => WatchThemePreviewController(),
() => WatchThemePreviewController(Get.find<ThemeApi>()),
);
}
}
... ... @@ -25,7 +28,7 @@ class CreateWatchThemeBinding extends Bindings {
@override
void dependencies() {
Get.lazyPut<CreateWatchThemeController>(
() => CreateWatchThemeController(),
() => CreateWatchThemeController(Get.find<ThemeApi>()),
);
}
}
... ... @@ -34,7 +37,7 @@ class CustomWatchThemePreviewBinding extends Bindings {
@override
void dependencies() {
Get.lazyPut<CustomWatchThemePreviewController>(
() => CustomWatchThemePreviewController(),
() => CustomWatchThemePreviewController(Get.find<ThemeApi>()),
);
}
}
... ...
import 'package:doublefeel_flutter/app/routes/app_pages.dart';
import 'package:doublefeel_flutter/core/network/api/theme_api.dart';
import 'package:doublefeel_flutter/core/result/app_result.dart';
import 'package:doublefeel_flutter/core/util/app_toast.dart';
import 'package:doublefeel_flutter/pigeon/wear_engine_api.g.dart';
import 'package:flutter/material.dart';
... ... @@ -8,10 +10,15 @@ import '../models/watch_theme_models.dart';
import '../widgets/watch_theme_dialogs.dart';
class CreateWatchThemeController extends GetxController {
CreateWatchThemeController(this._themeApi);
final ThemeApi _themeApi;
final customThemeName = ''.obs;
final agreedToSubmission = true.obs;
final customStatusNames = ['状态优秀', '状态正常', '注意压力', '压力过载'].obs;
final customImagePaths = RxList<String?>.filled(4, null);
final isSaving = false.obs;
late final TextEditingController themeNameController;
@override
... ... @@ -30,9 +37,10 @@ class CreateWatchThemeController extends GetxController {
}
bool get canSaveCustomTheme =>
!isSaving.value &&
customThemeName.value.isNotEmpty &&
agreedToSubmission.value &&
customImagePaths.any((path) => path != null && path.isNotEmpty);
customImagePaths.every((path) => path != null && path.isNotEmpty);
Future<void> pickCustomImage(int index) async {
try {
... ... @@ -81,12 +89,31 @@ class CreateWatchThemeController extends GetxController {
agreedToSubmission.toggle();
}
void saveCustomTheme() {
Future<void> saveCustomTheme() async {
if (!canSaveCustomTheme) {
return;
}
isSaving.value = true;
final result = await _themeApi.createTheme(
name: customThemeName.value,
fullOfEnergyName: customStatusNames[0],
normalName: customStatusNames[1],
overpressureName: customStatusNames[3],
fullOfEnergyImage: customImagePaths[0] ?? '',
normalImage: customImagePaths[1] ?? '',
overpressureImage: customImagePaths[3] ?? customImagePaths[2] ?? '',
);
isSaving.value = false;
if (result is! AppSuccess<void>) {
AppToast.show('主题保存失败');
return;
}
final createdTheme = await _loadCreatedTheme();
Get.toNamed(Routes.WATCH_THEME_CUSTOM_PREVIEW, arguments: {
'theme': _buildThemeItem(),
'theme': createdTheme ?? _buildThemeItem(),
});
}
... ... @@ -103,4 +130,16 @@ class CreateWatchThemeController extends GetxController {
],
);
}
Future<WatchThemeItem?> _loadCreatedTheme() async {
final result = await _themeApi.getThemeList(errorHandlingPolicy: null);
if (result is! AppSuccess<WatchThemeResponse>) {
return null;
}
final matchedThemes = result.data.themes
.where((theme) => theme.title == customThemeName.value)
.toList()
..sort((a, b) => (b.createTime ?? 0).compareTo(a.createTime ?? 0));
return matchedThemes.firstOrNull;
}
}
... ...
import 'dart:convert';
import 'package:doublefeel_flutter/core/network/api/theme_api.dart';
import 'package:doublefeel_flutter/core/result/app_result.dart';
import 'package:doublefeel_flutter/core/util/app_toast.dart';
import 'package:doublefeel_flutter/pigeon/wear_engine_api.g.dart';
import 'package:get/get.dart';
import '../models/watch_theme_models.dart';
import '../widgets/watch_theme_dialogs.dart';
class CustomWatchThemePreviewController extends GetxController {
CustomWatchThemePreviewController(this._themeApi);
final ThemeApi _themeApi;
late final WatchThemeItem themeItem;
final isApplying = false.obs;
final isDeleting = false.obs;
@override
void onInit() {
... ... @@ -40,11 +52,46 @@ class CustomWatchThemePreviewController extends GetxController {
barrierDismissible: true,
);
if (shouldDelete == true) {
final themeId = themeItem.id;
if (themeId == null) {
Get.back();
return;
}
isDeleting.value = true;
final result = await _themeApi.deleteTheme(themeId);
isDeleting.value = false;
if (result is! AppSuccess<void>) {
AppToast.show('删除主题失败');
return;
}
AppToast.show('已删除主题');
Get.back();
}
}
void addWatchFace() {
// Hook to NativeHostApiStubs when the native watch-face install flow is ready.
Future<void> addWatchFace() async {
final themeId = themeItem.id;
if (themeId == null) {
AppToast.show('主题信息不完整');
return;
}
isApplying.value = true;
final result = await _themeApi.applyTheme(themeId);
if (result is! AppSuccess<void>) {
isApplying.value = false;
AppToast.show('应用主题失败');
return;
}
try {
await WearEngineHostApi().sendWatchSyncPayload(
jsonEncode(themeItem.toJson()),
);
} catch (_) {
// The active theme is already saved on the server.
}
isApplying.value = false;
AppToast.show('已应用主题');
}
}
... ...
import 'package:doublefeel_flutter/app/routes/app_pages.dart';
import 'package:doublefeel_flutter/core/network/api/theme_api.dart';
import 'package:doublefeel_flutter/core/result/app_result.dart';
import 'package:get/get.dart';
import '../models/watch_theme_models.dart';
class WatchThemeController extends GetxController {
WatchThemeController(this._themeApi);
final ThemeApi _themeApi;
final selectedOfficialIndex = 0.obs;
final hasCustomThemes = false.obs;
final isPremium = false.obs;
final isLoadingThemes = false.obs;
final officialThemeItems = <WatchThemeItem>[...officialThemes].obs;
final customThemeItems = <WatchThemeItem>[...customThemes].obs;
@override
void onInit() {
... ... @@ -16,6 +25,35 @@ class WatchThemeController extends GetxController {
hasCustomThemes.value = args['hasCustomThemes'] == true;
isPremium.value = args['isPremium'] == true || hasCustomThemes.value;
}
loadThemeList();
}
Future<void> loadThemeList() async {
isLoadingThemes.value = true;
final result = await _themeApi.getThemeList(errorHandlingPolicy: null);
isLoadingThemes.value = false;
if (result is! AppSuccess<WatchThemeResponse>) {
hasCustomThemes.value = customThemeItems.isNotEmpty;
isPremium.value = isPremium.value || hasCustomThemes.value;
return;
}
final themes = result.data.themes;
if (themes.isEmpty) {
hasCustomThemes.value = customThemeItems.isNotEmpty;
isPremium.value = isPremium.value || hasCustomThemes.value;
return;
}
final official = themes.where((theme) => !theme.isCustomTheme).toList();
final custom = themes.where((theme) => theme.isCustomTheme).toList();
if (official.isNotEmpty) {
officialThemeItems.assignAll(official);
}
customThemeItems.assignAll(custom);
hasCustomThemes.value = custom.isNotEmpty;
isPremium.value = isPremium.value || hasCustomThemes.value;
}
void executeBackLogic() {
... ... @@ -25,7 +63,7 @@ class WatchThemeController extends GetxController {
void selectOfficialTheme(int index) {
selectedOfficialIndex.value = index;
Get.toNamed(Routes.WATCH_THEME_PREVIEW, arguments: {
'theme': officialThemes[index],
'theme': officialThemeItems[index],
});
}
... ...
import 'dart:convert';
import 'package:doublefeel_flutter/core/network/api/theme_api.dart';
import 'package:doublefeel_flutter/core/result/app_result.dart';
import 'package:doublefeel_flutter/core/util/app_toast.dart';
import 'package:doublefeel_flutter/pigeon/wear_engine_api.g.dart';
import 'package:get/get.dart';
import '../models/watch_theme_models.dart';
class WatchThemePreviewController extends GetxController {
WatchThemePreviewController(this._themeApi);
final ThemeApi _themeApi;
late final WatchThemeItem themeItem;
final isApplying = false.obs;
@override
void onInit() {
... ... @@ -26,7 +37,29 @@ class WatchThemePreviewController extends GetxController {
Get.back();
}
void addWatchFace() {
// Hook to NativeHostApiStubs when the native watch-face install flow is ready.
Future<void> addWatchFace() async {
final themeId = themeItem.id;
if (themeId == null) {
AppToast.show('主题信息不完整');
return;
}
isApplying.value = true;
final result = await _themeApi.applyTheme(themeId);
if (result is! AppSuccess<void>) {
isApplying.value = false;
AppToast.show('应用主题失败');
return;
}
try {
await WearEngineHostApi().sendWatchSyncPayload(
jsonEncode(themeItem.toJson()),
);
} catch (_) {
// The server state has been updated; watch sync can be retried later.
}
isApplying.value = false;
AppToast.show('已应用主题');
}
}
... ...
import 'dart:ui';
import 'package:doublefeel_flutter/app/modules/watch_theme/widgets/watch_theme_colors.dart';
class WatchThemeItem {
const WatchThemeItem({
this.id,
this.createTime,
this.updateTime,
this.userId,
this.status,
this.isCustomTheme = false,
this.isDefaultCharacter = false,
required this.title,
... ... @@ -8,11 +16,76 @@ class WatchThemeItem {
});
final int? id;
final int? createTime;
final int? updateTime;
final int? userId;
final int? status;
final bool isDefaultCharacter;
final bool isCustomTheme;
final String title;
final List<WatchThemeItemInfo> infoList;
factory WatchThemeItem.fromJson(Map<String, dynamic> json) {
final isDefaultTheme = json['is_default_theme'] == true;
final userId = json['user_id'] as int?;
final positiveDescription = json['positive_description'] as String?;
final normalDescription = json['normal_description'] as String?;
final negativeDescription = json['negative_description'] as String?;
final positiveImage = json['positive_image'] as String?;
final normalImage = json['normal_image'] as String?;
final negativeImage = json['negative_image'] as String?;
return WatchThemeItem(
id: json['id'] as int?,
createTime: json['create_time'] as int?,
updateTime: json['update_time'] as int?,
userId: userId,
status: json['status'] as int?,
isDefaultCharacter: isDefaultTheme,
isCustomTheme: userId != null,
title: (json['theme_name'] as String?) ?? '自定义主题',
infoList: [
WatchThemeItemInfo(
title: positiveDescription ?? '状态优秀',
imgUrl: positiveImage,
),
WatchThemeItemInfo(
title: normalDescription ?? '状态正常',
imgUrl: normalImage,
),
WatchThemeItemInfo(
title: negativeDescription ?? '注意压力',
imgUrl: negativeImage,
),
WatchThemeItemInfo(
title: negativeDescription ?? '压力过载',
imgUrl: negativeImage,
),
],
);
}
Map<String, dynamic> toJson() {
final excellent = infoList.elementAtOrNull(0);
final normal = infoList.elementAtOrNull(1);
final overload = infoList.elementAtOrNull(3) ?? infoList.elementAtOrNull(2);
final json = <String, dynamic>{};
if (id != null) json['id'] = id;
if (createTime != null) json['create_time'] = createTime;
if (updateTime != null) json['update_time'] = updateTime;
if (userId != null) json['user_id'] = userId;
if (status != null) json['status'] = status;
json['theme_name'] = title;
json['is_default_theme'] = isDefaultCharacter;
json['positive_description'] = excellent?.title;
json['positive_image'] = excellent?.image;
json['normal_description'] = normal?.title;
json['normal_image'] = normal?.image;
json['negative_description'] = overload?.title;
json['negative_image'] = overload?.image;
return json;
}
static WatchThemeItem empty() {
return WatchThemeItem(
title: '自定义主题',
... ... @@ -27,6 +100,63 @@ class WatchThemeItemInfo {
final String? assetPath;
WatchThemeItemInfo({required this.title, this.imgUrl, this.assetPath});
String? get image => imgUrl ?? assetPath;
}
class WatchThemeResponse {
const WatchThemeResponse({this.themes = const []});
final List<WatchThemeItem> themes;
factory WatchThemeResponse.fromJson(Map<String, dynamic> json) {
final rawThemes = json['themes'];
return WatchThemeResponse(
themes: rawThemes is List
? rawThemes
.whereType<Map>()
.map((theme) => WatchThemeItem.fromJson(
Map<String, dynamic>.from(theme),
))
.toList()
: const [],
);
}
}
class WatchThemeUpsertRequest {
const WatchThemeUpsertRequest({
this.themeId,
required this.name,
required this.fullOfEnergyName,
required this.normalName,
required this.overpressureName,
required this.fullOfEnergyImage,
required this.normalImage,
required this.overpressureImage,
});
final int? themeId;
final String name;
final String fullOfEnergyName;
final String normalName;
final String overpressureName;
final String fullOfEnergyImage;
final String normalImage;
final String overpressureImage;
Map<String, dynamic> toJson() {
return {
if (themeId != null) 'theme_id': themeId,
'theme_name': name,
'positive_description': fullOfEnergyName,
'positive_image': fullOfEnergyImage,
'normal_description': normalName,
'normal_image': normalImage,
'negative_description': overpressureName,
'negative_image': overpressureImage,
};
}
}
final officialThemes = <WatchThemeItem>[
... ... @@ -161,3 +291,17 @@ final customThemes = <WatchThemeItem>[
],
),
];
final defaultThemeTemplates = [
WatchThemeTemplateItem(title: '状态优秀', color: WatchThemeColors.excellent),
WatchThemeTemplateItem(title: '状态正常', color: WatchThemeColors.normal),
WatchThemeTemplateItem(title: '注意压力', color: WatchThemeColors.stress),
WatchThemeTemplateItem(title: '压力过载', color: WatchThemeColors.overload),
];
class WatchThemeTemplateItem {
final String title;
final Color color;
WatchThemeTemplateItem({required this.title, required this.color});
}
... ...
... ... @@ -59,7 +59,7 @@ class CreateWatchThemeView extends GetView<CreateWatchThemeController> {
),
Expanded(
child: SingleChildScrollView(
physics: const ClampingScrollPhysics(),
physics: const AlwaysScrollableScrollPhysics(),
padding: EdgeInsets.only(bottom: 28.dp),
child: Column(
children: [
... ... @@ -130,8 +130,7 @@ class _EditorCard extends StatelessWidget {
),
),
SizedBox(height: 14.dp),
Obx(
() => GridView.builder(
GridView.builder(
shrinkWrap: true,
padding: EdgeInsets.zero,
physics: const NeverScrollableScrollPhysics(),
... ... @@ -143,16 +142,17 @@ class _EditorCard extends StatelessWidget {
mainAxisExtent: 170.dp,
),
itemBuilder: (context, index) {
return _UploadTile(
return Obx(
() => _UploadTile(
index: index,
color: _statusColors[index],
label: controller.customStatusNames[index],
path: controller.customImagePaths[index],
onPick: () => controller.pickCustomImage(index),
onRename: () => controller.showRenameStatusDialog(index),
),
);
},
),
},
),
SizedBox(height: 14.dp),
Text(
... ... @@ -235,6 +235,9 @@ class _UploadTile extends StatelessWidget {
),
),
SizedBox(height: 10.dp),
GestureDetector(
onTap: onRename,
child:
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
... ... @@ -246,16 +249,14 @@ class _UploadTile extends StatelessWidget {
),
),
SizedBox(width: 4.dp),
GestureDetector(
onTap: onRename,
child: Icon(
Icon(
Icons.edit_outlined,
color: const Color(0xFFA084EF),
size: 14.dp,
),
),
],
),
),
],
);
}
... ... @@ -317,7 +318,7 @@ class _SaveButton extends StatelessWidget {
return Opacity(
opacity: enabled ? 1 : 0.4,
child: GestureDetector(
onTap: enabled ? controller.saveCustomTheme : null,
onTap: enabled ? () => controller.saveCustomTheme() : null,
child: Container(
width: 280.dp,
height: 48.dp,
... ... @@ -327,7 +328,7 @@ class _SaveButton extends StatelessWidget {
borderRadius: BorderRadius.circular(24.dp),
),
child: Text(
'保存主题',
controller.isSaving.value ? '保存中' : '保存主题',
style: TextStyle(
color: Colors.white,
fontSize: 16.dp,
... ...
import 'package:doublefeel_flutter/app/modules/watch_theme/models/watch_theme_models.dart';
import 'package:doublefeel_flutter/core/util/size_extensions.dart';
import 'package:doublefeel_flutter/r.dart';
import 'package:flutter/material.dart';
... ... @@ -114,12 +115,6 @@ class _CustomStatusPreviewCard extends StatelessWidget {
R.assetsImagesWatchThemeCustomStatusOverload,
];
static const _colors = [
WatchThemeColors.excellent,
WatchThemeColors.normal,
WatchThemeColors.stress,
WatchThemeColors.overload,
];
@override
Widget build(BuildContext context) {
... ... @@ -150,7 +145,7 @@ class _CustomStatusPreviewCard extends StatelessWidget {
Text(
i < infoList.length ? infoList[i].title : '',
style: TextStyle(
color: _colors[i],
color: defaultThemeTemplates[i].color,
fontSize: 12.dp,
),
),
... ...
import 'package:doublefeel_flutter/app/modules/watch_theme/models/watch_theme_models.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:get/get.dart';
... ... @@ -63,7 +62,7 @@ class WatchThemeView extends GetView<WatchThemeController> {
const WatchThemeHeader(),
const SizedBox(height: 26),
OfficialThemeGrid(
themes: officialThemes,
themes: controller.officialThemeItems,
selectedIndex:
controller.selectedOfficialIndex.value,
onThemeTap: controller.selectOfficialTheme,
... ... @@ -72,7 +71,7 @@ class WatchThemeView extends GetView<WatchThemeController> {
CustomThemeCard(
isPremium: controller.isPremium.value,
hasCustomThemes: controller.hasCustomThemes.value,
customThemes: customThemes,
customThemes: controller.customThemeItems,
onCreateTap: controller.createCustomTheme,
onThemeTap: controller.previewCustomTheme,
),
... ...
... ... @@ -20,29 +20,34 @@ class StatusPreviewCard extends StatelessWidget {
SizedBox(height: 24.dp),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
for (final item in themeItem.infoList)
Column(
children: [
WatchThemeCharacterAvatar(
size: 60,
assetPath: item.assetPath,
),
SizedBox(height: 4.dp),
Text(
item.title,
style: TextStyle(
fontSize: 12.dp,
fontWeight: FontWeight.w400,
height: 1.25,
),
),
],
),
],
children: _previewItemView(),
),
],
),
);
}
List<Widget> _previewItemView() {
final infoList = themeItem.infoList;
return [
for (var i = 0; i < infoList.length; i++)
Column(
children: [
WatchThemeCharacterAvatar(
size: 60,
assetPath: infoList[i].assetPath,
),
SizedBox(height: 4.dp),
Text(
i < infoList.length ? infoList[i].title : '',
style: TextStyle(
color: defaultThemeTemplates[i].color,
fontSize: 12.dp,
fontWeight: FontWeight.w400,
),
),
],
),
];
}
}
... ...
... ... @@ -47,7 +47,7 @@ class WatchThemeNavBar extends StatelessWidget {
),
trailing == null
? SizedBox(
width: 8.dp,
width: 28.dp,
)
: Center(child: trailing)
],
... ...
import '../../../app/modules/watch_theme/models/watch_theme_models.dart';
import '../../error/http_error_handling_policy.dart';
import '../../result/app_result.dart';
import '../../result/safe_call.dart';
import '../api_paths.dart';
import '../dio_client.dart';
class ThemeApi {
ThemeApi(this._dioClient);
final DioClient _dioClient;
Future<AppResult<void>> createTheme({
required String name,
required String fullOfEnergyName,
required String normalName,
required String overpressureName,
required String fullOfEnergyImage,
required String normalImage,
required String overpressureImage,
}) {
return safeCall(
call: () async {
await _dioClient.dio.post(
ApiPaths.watchTheme,
data: WatchThemeUpsertRequest(
name: name,
fullOfEnergyName: fullOfEnergyName,
normalName: normalName,
overpressureName: overpressureName,
fullOfEnergyImage: fullOfEnergyImage,
normalImage: normalImage,
overpressureImage: overpressureImage,
).toJson(),
);
},
);
}
Future<AppResult<void>> editTheme({
required int themeId,
required String name,
required String fullOfEnergyName,
required String normalName,
required String overpressureName,
required String fullOfEnergyImage,
required String normalImage,
required String overpressureImage,
}) {
return safeCall(
call: () async {
await _dioClient.dio.put(
ApiPaths.watchTheme,
data: WatchThemeUpsertRequest(
themeId: themeId,
name: name,
fullOfEnergyName: fullOfEnergyName,
normalName: normalName,
overpressureName: overpressureName,
fullOfEnergyImage: fullOfEnergyImage,
normalImage: normalImage,
overpressureImage: overpressureImage,
).toJson(),
);
},
);
}
Future<AppResult<WatchThemeItem>> getTheme({
required int themeId,
HttpErrorHandlingPolicy? errorHandlingPolicy =
HttpErrorHandlingPolicy.defaultPolicy,
}) {
return safeCall(
call: () async {
final response = await _dioClient.dio.get(
ApiPaths.watchTheme,
queryParameters: {'theme_id': themeId},
);
return WatchThemeItem.fromJson(response.data as Map<String, dynamic>);
},
errorHandlingPolicy: errorHandlingPolicy,
);
}
Future<AppResult<WatchThemeResponse>> getThemeList({
HttpErrorHandlingPolicy? errorHandlingPolicy =
HttpErrorHandlingPolicy.defaultPolicy,
}) {
return safeCall(
call: () async {
final response = await _dioClient.dio.get(ApiPaths.watchThemeList);
return WatchThemeResponse.fromJson(
response.data as Map<String, dynamic>,
);
},
errorHandlingPolicy: errorHandlingPolicy,
);
}
Future<AppResult<void>> deleteTheme(int themeId) {
return safeCall(
call: () async {
await _dioClient.dio.delete(
ApiPaths.watchTheme,
data: {'theme_id': themeId},
);
},
);
}
Future<AppResult<WatchThemeItem>> getCurrentTheme({
bool? isOther,
HttpErrorHandlingPolicy? errorHandlingPolicy =
HttpErrorHandlingPolicy.defaultPolicy,
}) {
return safeCall(
call: () async {
final response = await _dioClient.dio.get(
ApiPaths.watchThemeActive,
queryParameters: {
if (isOther != null) 'is_other': isOther ? 1 : 0,
},
);
return WatchThemeItem.fromJson(response.data as Map<String, dynamic>);
},
errorHandlingPolicy: errorHandlingPolicy,
);
}
Future<AppResult<void>> applyTheme(int themeId) {
return safeCall(
call: () async {
await _dioClient.dio.post(
ApiPaths.watchThemeActive,
data: {'theme_id': themeId},
);
},
);
}
// Keep compatibility with the original Swift ThemeEndpoint spelling.
Future<AppResult<void>> appplyTheme(int themeId) => applyTheme(themeId);
}
... ...
... ... @@ -48,4 +48,10 @@ abstract final class ApiPaths {
// VIP
static const userVipInfo = '/client/doublefeel/user/vip/info/';
// Watch theme
static const watchTheme = '/client/doublefeel/theme/watch_theme/';
static const watchThemeList = '/client/doublefeel/theme/watch_theme/list/';
static const watchThemeActive =
'/client/doublefeel/theme/watch_theme/active/';
}
... ...
... ... @@ -62,8 +62,7 @@ import 'app_localizations_zh.dart';
/// be consistent with the languages listed in the AppLocalizations.supportedLocales
/// property.
abstract class AppLocalizations {
AppLocalizations(String locale)
: localeName = intl.Intl.canonicalizedLocale(locale.toString());
AppLocalizations(String locale) : localeName = intl.Intl.canonicalizedLocale(locale.toString());
final String localeName;
... ... @@ -71,8 +70,7 @@ abstract class AppLocalizations {
return Localizations.of<AppLocalizations>(context, AppLocalizations);
}
static const LocalizationsDelegate<AppLocalizations> delegate =
_AppLocalizationsDelegate();
static const LocalizationsDelegate<AppLocalizations> delegate = _AppLocalizationsDelegate();
/// A list of this localizations delegate along with the default localizations
/// delegates.
... ... @@ -84,8 +82,7 @@ abstract class AppLocalizations {
/// Additional delegates can be added by appending to this list in
/// MaterialApp. This list does not have to be used at all if a custom list
/// of delegates is preferred or required.
static const List<LocalizationsDelegate<dynamic>> localizationsDelegates =
<LocalizationsDelegate<dynamic>>[
static const List<LocalizationsDelegate<dynamic>> localizationsDelegates = <LocalizationsDelegate<dynamic>>[
delegate,
GlobalMaterialLocalizations.delegate,
GlobalCupertinoLocalizations.delegate,
... ... @@ -528,8 +525,7 @@ abstract class AppLocalizations {
///
/// In zh, this message translates to:
/// **'你们现在可以查看彼此的 HRV、压力与睡眠变化,并在对方疲惫时及时送上关心。'**
String
get youCanNowViewEachOtherSHrvStressLevelsAndSleepPatternsAndReachOutToCheckInWhenTheOtherPersonSeemsTired;
String get youCanNowViewEachOtherSHrvStressLevelsAndSleepPatternsAndReachOutToCheckInWhenTheOtherPersonSeemsTired;
/// No description provided for @bindPartnerTitle.
///
... ... @@ -1738,8 +1734,7 @@ abstract class AppLocalizations {
String get dailyActions;
}
class _AppLocalizationsDelegate
extends LocalizationsDelegate<AppLocalizations> {
class _AppLocalizationsDelegate extends LocalizationsDelegate<AppLocalizations> {
const _AppLocalizationsDelegate();
@override
... ... @@ -1748,25 +1743,25 @@ class _AppLocalizationsDelegate
}
@override
bool isSupported(Locale locale) =>
<String>['en', 'zh'].contains(locale.languageCode);
bool isSupported(Locale locale) => <String>['en', 'zh'].contains(locale.languageCode);
@override
bool shouldReload(_AppLocalizationsDelegate old) => false;
}
AppLocalizations lookupAppLocalizations(Locale locale) {
// Lookup logic when only language code is specified.
switch (locale.languageCode) {
case 'en':
return AppLocalizationsEn();
case 'zh':
return AppLocalizationsZh();
case 'en': return AppLocalizationsEn();
case 'zh': return AppLocalizationsZh();
}
throw FlutterError(
'AppLocalizations.delegate failed to load unsupported locale "$locale". This is likely '
'an issue with the localizations generation tool. Please file an issue '
'on GitHub with a reproducible sample app and the gen-l10n configuration '
'that was used.');
'AppLocalizations.delegate failed to load unsupported locale "$locale". This is likely '
'an issue with the localizations generation tool. Please file an issue '
'on GitHub with a reproducible sample app and the gen-l10n configuration '
'that was used.'
);
}
... ...
// ignore: unused_import
import 'package:intl/intl.dart' as intl;
import 'app_localizations.dart';
// ignore_for_file: type=lint
... ... @@ -69,12 +67,10 @@ class AppLocalizationsEn extends AppLocalizations {
String get settings => 'Settings';
@override
String get onboardingIntroTitle =>
'DoubleFeel is a health companion app built for Apple Watch';
String get onboardingIntroTitle => 'DoubleFeel is a health companion app built for Apple Watch';
@override
String get onboardingIntroBody =>
'We hope to help you\n<em>notice changes in your mind and body, and help the people who love you</em> see when you are <em>tired or need support</em>';
String get onboardingIntroBody => 'We hope to help you\n<em>notice changes in your mind and body, and help the people who love you</em> see when you are <em>tired or need support</em>';
@override
String get onboardingStateQuestion => 'Which of these often happens to you?';
... ... @@ -86,19 +82,16 @@ class AppLocalizationsEn extends AppLocalizations {
String get onboardingStateTired => 'I get tired easily';
@override
String get onboardingStatePoorRest =>
'I wake up but still do not feel rested';
String get onboardingStatePoorRest => 'I wake up but still do not feel rested';
@override
String get onboardingStateNeedStimulants =>
'I rely on cigarettes, alcohol, coffee, or other stimulants to stay alert';
String get onboardingStateNeedStimulants => 'I rely on cigarettes, alcohol, coffee, or other stimulants to stay alert';
@override
String get onboardingStateNone => 'None of the above';
@override
String get onboardingStressGoalQuestion =>
'What do you want to learn by understanding stress?';
String get onboardingStressGoalQuestion => 'What do you want to learn by understanding stress?';
@override
String get onboardingStressGoalSource => 'Understand where stress comes from';
... ... @@ -107,8 +100,7 @@ class AppLocalizationsEn extends AppLocalizations {
String get onboardingStressGoalReminder => 'Get reminded when stress appears';
@override
String get onboardingStressGoalLovedOnes =>
'Let people who care about me know my stress state';
String get onboardingStressGoalLovedOnes => 'Let people who care about me know my stress state';
@override
String get onboardingStressGoalRelax => 'Understand stress and feel lighter';
... ... @@ -117,8 +109,7 @@ class AppLocalizationsEn extends AppLocalizations {
String get onboardingStressGoalBodyTalk => 'Communicate better with my body';
@override
String get onboardingReliefQuestion =>
'Which methods do you think can ease stress?';
String get onboardingReliefQuestion => 'Which methods do you think can ease stress?';
@override
String get onboardingReliefSleep => 'Regular sleep';
... ... @@ -142,8 +133,7 @@ class AppLocalizationsEn extends AppLocalizations {
String get onboardingKeyDataTitle => 'Did you know?';
@override
String get onboardingKeyDataSubtitle =>
'Everyone has a magical and important body metric that can help us:';
String get onboardingKeyDataSubtitle => 'Everyone has a magical and important body metric that can help us:';
@override
String get onboardingKeyDataStress => 'Monitor stress';
... ... @@ -158,8 +148,7 @@ class AppLocalizationsEn extends AppLocalizations {
String get onboardingKeyDataHabits => 'Build healthy habits';
@override
String get onboardingKeyDataLovedOnes =>
'Help important people care about your state in time';
String get onboardingKeyDataLovedOnes => 'Help important people care about your state in time';
@override
String get onboardingTellMeWhatItIs => 'Tell me what it is!';
... ... @@ -168,19 +157,16 @@ class AppLocalizationsEn extends AppLocalizations {
String get onboardingHrvTitle => 'It is HRV, heart rate variability';
@override
String get onboardingHrvSubtitle =>
'It helps us measure overall stress and health';
String get onboardingHrvSubtitle => 'It helps us measure overall stress and health';
@override
String get onboardingHrvDescription =>
'Heart rate variability (HRV) is the tiny variation in time between heartbeats. It reflects autonomic nervous system activity and how the body responds to stress.';
String get onboardingHrvDescription => 'Heart rate variability (HRV) is the tiny variation in time between heartbeats. It reflects autonomic nervous system activity and how the body responds to stress.';
@override
String get onboardingTellMeMore => 'Tell me more';
@override
String get onboardingResearchTitle =>
'Many studies show that HRV changes are closely related to how our body and mind feel';
String get onboardingResearchTitle => 'Many studies show that HRV changes are closely related to how our body and mind feel';
@override
String get onboardingResearchFatigue => 'Physical fatigue';
... ... @@ -198,30 +184,25 @@ class AppLocalizationsEn extends AppLocalizations {
String get onboardingHealthPermissionTitle => 'Allow health data access';
@override
String get onboardingHealthPermissionBody =>
'DoubleFeel needs connected wearable health data to send reminders, count stress moments, and provide suggestions.';
String get onboardingHealthPermissionBody => 'DoubleFeel needs connected wearable health data to send reminders, count stress moments, and provide suggestions.';
@override
String get onboardingHealthPermissionPrivacy =>
'Your health data is stored locally. We do not upload any related data.';
String get onboardingHealthPermissionPrivacy => 'Your health data is stored locally. We do not upload any related data.';
@override
String get onboardingNotificationTitle => 'Turn on notifications';
@override
String get onboardingNotificationSubtitle =>
'Learn about every body change in time';
String get onboardingNotificationSubtitle => 'Learn about every body change in time';
@override
String get onboardingNotificationBody =>
'After Apple Watch data updates, we can remind you in time and help you act to improve your stress state.';
String get onboardingNotificationBody => 'After Apple Watch data updates, we can remind you in time and help you act to improve your stress state.';
@override
String get onboardingMemberTitle => 'Get an annual membership offer';
@override
String get onboardingMemberBody =>
'Start your pressure alert and health companion journey, so love and care are always present.';
String get onboardingMemberBody => 'Start your pressure alert and health companion journey, so love and care are always present.';
@override
String get onboardingMemberOriginalPrice => 'Original ¥72.00/year';
... ... @@ -236,16 +217,13 @@ class AppLocalizationsEn extends AppLocalizations {
String get onboardingMemberAllOptions => 'View all purchase options';
@override
String get healthCompanionIsNowAvailable =>
'Health Companion is now available';
String get healthCompanionIsNowAvailable => 'Health Companion is now available';
@override
String get youCanNowViewEachOtherSHrvStressLevelsAndSleepPatternsAndReachOutToCheckInWhenTheOtherPersonSeemsTired =>
'You can now view each other\'s HRV, stress levels, and sleep patterns, and reach out to check in when the other person seems tired.';
String get youCanNowViewEachOtherSHrvStressLevelsAndSleepPatternsAndReachOutToCheckInWhenTheOtherPersonSeemsTired => 'You can now view each other\'s HRV, stress levels, and sleep patterns, and reach out to check in when the other person seems tired.';
@override
String get bindPartnerTitle =>
'Add a Close Contact\nOne more person to care about your health';
String get bindPartnerTitle => 'Add a Close Contact\nOne more person to care about your health';
@override
String get bindPartnerMyId => 'My ID';
... ... @@ -284,8 +262,7 @@ class AppLocalizationsEn extends AppLocalizations {
String get onboardingResearchGoodSleep => 'Good Sleep';
@override
String get loginSlogan =>
'Start your pressure alert and health companion journey\nso love and care are always present';
String get loginSlogan => 'Start your pressure alert and health companion journey\nso love and care are always present';
@override
String get loginWithPhone => 'Sign in with Phone';
... ... @@ -335,15 +312,13 @@ class AppLocalizationsEn extends AppLocalizations {
String get phoneLoginCodeHint => 'Enter verification code';
@override
String get phoneLoginAutoRegisterHint =>
'Unregistered numbers will be registered automatically';
String get phoneLoginAutoRegisterHint => 'Unregistered numbers will be registered automatically';
@override
String get phoneLoginLoggingIn => 'Signing in...';
@override
String get loginAgreeToTermsToast =>
'Please read and agree to the Terms of Service and Privacy Policy first';
String get loginAgreeToTermsToast => 'Please read and agree to the Terms of Service and Privacy Policy first';
@override
String get phoneLoginInvalidPhone => 'Invalid phone number';
... ... @@ -355,12 +330,10 @@ class AppLocalizationsEn extends AppLocalizations {
String get phoneLoginInvalidCode => 'Invalid verification code';
@override
String get todayHealthDataAuthTitle =>
'Unable to access heart rate health data';
String get todayHealthDataAuthTitle => 'Unable to access heart rate health data';
@override
String get todayHealthDataAuthDescription =>
'DoubleFeel needs permission to access your health data to provide stress reminders, real-time stress statistics, and health suggestions. Otherwise, some app features may not work properly. Your health data is stored locally only and will not be uploaded to any server.';
String get todayHealthDataAuthDescription => 'DoubleFeel needs permission to access your health data to provide stress reminders, real-time stress statistics, and health suggestions. Otherwise, some app features may not work properly. Your health data is stored locally only and will not be uploaded to any server.';
@override
String get todayHealthDataAuthAction => 'Authorize health data access';
... ... @@ -381,24 +354,19 @@ class AppLocalizationsEn extends AppLocalizations {
String get todayFaqLinkNoData => 'What if the app or watch face has no data?';
@override
String get todayFaqLinkHrvRealtimeUpdate =>
'How can HRV data update in real time?';
String get todayFaqLinkHrvRealtimeUpdate => 'How can HRV data update in real time?';
@override
String get todayFaqLinkWatchNoStatusNotification =>
'Why can\'t my watch receive status notifications?';
String get todayFaqLinkWatchNoStatusNotification => 'Why can\'t my watch receive status notifications?';
@override
String get todayFaqLinkWatchNoStatusAndInteractionNotification =>
'Why can\'t my watch receive status and interaction notifications?';
String get todayFaqLinkWatchNoStatusAndInteractionNotification => 'Why can\'t my watch receive status and interaction notifications?';
@override
String get todayFaqLinkWatchFaceDataDelay =>
'Why is watch face data delayed or not updating?';
String get todayFaqLinkWatchFaceDataDelay => 'Why is watch face data delayed or not updating?';
@override
String get todayFaqLinkWatchFaceBlackScreen =>
'Why does the watch face turn black?';
String get todayFaqLinkWatchFaceBlackScreen => 'Why does the watch face turn black?';
@override
String get todayStressStatusTitle => 'Overall stress status';
... ... @@ -425,176 +393,136 @@ class AppLocalizationsEn extends AppLocalizations {
String get todayStressStatusInsufficientData => 'Insufficient data';
@override
String get todayStressStatusOverloadDescription =>
'Your current HRV is much lower than your long-term average, which may indicate fatigue, high stress, or insufficient recovery. Rest is recommended.';
String get todayStressStatusOverloadDescription => 'Your current HRV is much lower than your long-term average, which may indicate fatigue, high stress, or insufficient recovery. Rest is recommended.';
@override
String get todayStressStatusCautionDescription =>
'Your current HRV is below the normal range, and your body may be accumulating stress. Pay attention to rest and recovery.';
String get todayStressStatusCautionDescription => 'Your current HRV is below the normal range, and your body may be accumulating stress. Pay attention to rest and recovery.';
@override
String get todayStressStatusNormalDescription =>
'Your current body state is within your normal fluctuation range.';
String get todayStressStatusNormalDescription => 'Your current body state is within your normal fluctuation range.';
@override
String get todayStressStatusExcellentDescription =>
'Your current HRV is higher than your recent average, indicating better recovery and overall state.';
String get todayStressStatusExcellentDescription => 'Your current HRV is higher than your recent average, indicating better recovery and overall state.';
@override
String get todayStressStatusInsufficientDataDescription =>
'There is not enough available data to accurately assess your stress state yet.';
String get todayStressStatusInsufficientDataDescription => 'There is not enough available data to accurately assess your stress state yet.';
@override
String get todayHrvMeasurementIntro =>
'Apple Watch measures HRV every 2-5 hours by default. If you want to measure it manually right now, follow these steps:';
String get todayHrvMeasurementIntro => 'Apple Watch measures HRV every 2-5 hours by default. If you want to measure it manually right now, follow these steps:';
@override
String get todayHrvMeasurementStep1 =>
'1. Wear your Apple Watch snugly, sit down, and stay calm';
String get todayHrvMeasurementStep1 => '1. Wear your Apple Watch snugly, sit down, and stay calm';
@override
String get todayHrvMeasurementStep2 =>
'2. Open Mindfulness on Apple Watch and start Breathe';
String get todayHrvMeasurementStep2 => '2. Open Mindfulness on Apple Watch and start Breathe';
@override
String get todayHrvMeasurementStep3 =>
'3. Keep breathing steadily and wait 1-3 minutes';
String get todayHrvMeasurementStep3 => '3. Keep breathing steadily and wait 1-3 minutes';
@override
String get todayHrvMeasurementStep4 =>
'4. After breathing is complete, lock and unlock your iPhone once';
String get todayHrvMeasurementStep4 => '4. After breathing is complete, lock and unlock your iPhone once';
@override
String get todayHrvMeasurementStep5 =>
'5. Wait about one minute. StressWatch will receive and display your data';
String get todayHrvMeasurementStep5 => '5. Wait about one minute. StressWatch will receive and display your data';
@override
String get todayHrvMeasurementHint =>
'Tip: Data comes from Apple Watch. After measurement, there may be delays or data may not sync immediately. If this happens, measure again and wait for the data to be read.';
String get todayHrvMeasurementHint => 'Tip: Data comes from Apple Watch. After measurement, there may be delays or data may not sync immediately. If this happens, measure again and wait for the data to be read.';
@override
String get todayHrvMeasurementWarning =>
'Note: Health permissions must be enabled, and Low Power Mode must be turned off.';
String get todayHrvMeasurementWarning => 'Note: Health permissions must be enabled, and Low Power Mode must be turned off.';
@override
String get todayStressStatusWhatTitle => 'What is overall stress status?';
@override
String get todayStressStatusWhatDescription1 =>
'DoubleFeel combines your HRV (heart rate variability), resting heart rate, and body-state changes from the past 30 days to assess your overall stress level.';
String get todayStressStatusWhatDescription1 => 'DoubleFeel combines your HRV (heart rate variability), resting heart rate, and body-state changes from the past 30 days to assess your overall stress level.';
@override
String get todayStressStatusWhatDescription2 =>
'Because HRV fluctuates with emotions, exercise, sleep, and fatigue, a single reading has limited value. We recommend focusing on your overall stress status across the day, which is more stable and useful. It helps you understand your body state and helps close contacts notice changes in time.';
String get todayStressStatusWhatDescription2 => 'Because HRV fluctuates with emotions, exercise, sleep, and fatigue, a single reading has limited value. We recommend focusing on your overall stress status across the day, which is more stable and useful. It helps you understand your body state and helps close contacts notice changes in time.';
@override
String get todayStressStatusWhyHrvTitle =>
'Why use HRV (heart rate variability)?';
String get todayStressStatusWhyHrvTitle => 'Why use HRV (heart rate variability)?';
@override
String get todayStressStatusWhyHrvDescription =>
'HRV is an important metric for measuring body stress and recovery capacity.';
String get todayStressStatusWhyHrvDescription => 'HRV is an important metric for measuring body stress and recovery capacity.';
@override
String get todayStressStatusUsually => 'In general:';
@override
String get todayStressStatusHrvHigher =>
'· Higher HRV usually means better recovery';
String get todayStressStatusHrvHigher => '· Higher HRV usually means better recovery';
@override
String get todayStressStatusHrvLower =>
'· Lower HRV may indicate fatigue, stress, or insufficient sleep';
String get todayStressStatusHrvLower => '· Lower HRV may indicate fatigue, stress, or insufficient sleep';
@override
String get todayStressStatusHrvChangesFast =>
'· HRV changes quickly, making it useful for short-term body-state changes.';
String get todayStressStatusHrvChangesFast => '· HRV changes quickly, making it useful for short-term body-state changes.';
@override
String get todayStressStatusAppWatchDifferenceTitle =>
'How are stress statuses on the phone app and Apple Watch different?';
String get todayStressStatusAppWatchDifferenceTitle => 'How are stress statuses on the phone app and Apple Watch different?';
@override
String get todayStressStatusAppWatchDifferenceApp =>
'The phone app home page shows the day\'s overall stress status, combining HRV, resting heart rate, and overall trends.';
String get todayStressStatusAppWatchDifferenceApp => 'The phone app home page shows the day\'s overall stress status, combining HRV, resting heart rate, and overall trends.';
@override
String get todayStressStatusAppWatchDifferenceWatch =>
'Apple Watch shows the most recent real-time stress status, which is better for quickly checking your current body changes.';
String get todayStressStatusAppWatchDifferenceWatch => 'Apple Watch shows the most recent real-time stress status, which is better for quickly checking your current body changes.';
@override
String get todayStressStatusWaitingDataTitle =>
'Why does Waiting for data appear?';
String get todayStressStatusWaitingDataTitle => 'Why does Waiting for data appear?';
@override
String get todayStressStatusWaitingDataDescription1 =>
'Waiting for data means the current amount of collected data is not enough to generate a reliable stress assessment.';
String get todayStressStatusWaitingDataDescription1 => 'Waiting for data means the current amount of collected data is not enough to generate a reliable stress assessment.';
@override
String get todayStressStatusWaitingDataDescription2 =>
'Please keep wearing your Apple Watch and wait for the system to collect data automatically.';
String get todayStressStatusWaitingDataDescription2 => 'Please keep wearing your Apple Watch and wait for the system to collect data automatically.';
@override
String get todayStressStatusWaitingDataReasonsIntro =>
'Possible reasons include:';
String get todayStressStatusWaitingDataReasonsIntro => 'Possible reasons include:';
@override
String get todayStressStatusWaitingDataReason1 => '1. Not enough HRV samples';
@override
String get todayStressStatusWaitingDataReason2 =>
'2. Missing resting heart rate data';
String get todayStressStatusWaitingDataReason2 => '2. Missing resting heart rate data';
@override
String get todayStressStatusWaitingDataReason3 =>
'3. Apple Watch has not been worn long enough';
String get todayStressStatusWaitingDataReason3 => '3. Apple Watch has not been worn long enough';
@override
String get todayStressStatusWaitingDataReason4 =>
'4. Apple Health permissions are not enabled';
String get todayStressStatusWaitingDataReason4 => '4. Apple Health permissions are not enabled';
@override
String get todayHrvPrincipleHowMeasureTitle =>
'How does DoubleFeel measure stress status?';
String get todayHrvPrincipleHowMeasureTitle => 'How does DoubleFeel measure stress status?';
@override
String get todayHrvPrincipleHowMeasureDescription1 =>
'When you wear Apple Watch normally, the system automatically collects your heart rate data and syncs it to Apple Health.';
String get todayHrvPrincipleHowMeasureDescription1 => 'When you wear Apple Watch normally, the system automatically collects your heart rate data and syncs it to Apple Health.';
@override
String get todayHrvPrincipleHowMeasureDescription2 =>
'DoubleFeel calculates HRV (heart rate variability) indicators based on this data to assess your body stress and recovery state.';
String get todayHrvPrincipleHowMeasureDescription2 => 'DoubleFeel calculates HRV (heart rate variability) indicators based on this data to assess your body stress and recovery state.';
@override
String get todayHrvPrincipleHowMeasureDescription3 =>
'HRV is sensitive to stress, fatigue, sleep, emotions, and recovery, so it helps us notice body-state changes earlier.';
String get todayHrvPrincipleHowMeasureDescription3 => 'HRV is sensitive to stress, fatigue, sleep, emotions, and recovery, so it helps us notice body-state changes earlier.';
@override
String get todayHrvPrincipleHowMeasureDescription4 =>
'To make results more accurate, DoubleFeel compares your current HRV state with your own 30-day average instead of comparing it directly with other people.';
String get todayHrvPrincipleHowMeasureDescription4 => 'To make results more accurate, DoubleFeel compares your current HRV state with your own 30-day average instead of comparing it directly with other people.';
@override
String get todayRealtimeStressWhatTitle => 'What is real-time stress?';
@override
String get todayRealtimeStressWhatDescription1 =>
'Real-time stress is a body stress indicator dynamically generated by DoubleFeel based on your current HRV, heart rate state, and changes in your personal history.';
String get todayRealtimeStressWhatDescription1 => 'Real-time stress is a body stress indicator dynamically generated by DoubleFeel based on your current HRV, heart rate state, and changes in your personal history.';
@override
String get todayRealtimeStressWhatDescription2 =>
'A higher stress value means your body state is deviating more from your usual baseline and may reflect fatigue, insufficient recovery, or high stress.';
String get todayRealtimeStressWhatDescription2 => 'A higher stress value means your body state is deviating more from your usual baseline and may reflect fatigue, insufficient recovery, or high stress.';
@override
String get todayRealtimeStressWhatDescription3 =>
'It helps you notice body changes faster and adjust rest, exercise, and daily rhythm in time.';
String get todayRealtimeStressWhatDescription3 => 'It helps you notice body changes faster and adjust rest, exercise, and daily rhythm in time.';
@override
String get todayRealtimeStressDivisionTitle =>
'How is real-time stress divided?';
String get todayRealtimeStressDivisionTitle => 'How is real-time stress divided?';
@override
String get todayRealtimeStressDivisionIntro =>
'Real-time stress is shown as a percentage:';
String get todayRealtimeStressDivisionIntro => 'Real-time stress is shown as a percentage:';
@override
String get todayRealtimeStressExcellentRange => 'Excellent: 1%-20%';
... ... @@ -609,103 +537,79 @@ class AppLocalizationsEn extends AppLocalizations {
String get todayRealtimeStressOverloadRange => 'Stress overload: 81%-100%';
@override
String get todayRealtimeStressExcellentDescription =>
'Your recovery state is good and you are generally relaxed.';
String get todayRealtimeStressExcellentDescription => 'Your recovery state is good and you are generally relaxed.';
@override
String get todayRealtimeStressNormalDescription =>
'Your body is within the normal fluctuation range.';
String get todayRealtimeStressNormalDescription => 'Your body is within the normal fluctuation range.';
@override
String get todayRealtimeStressCautionDescription =>
'Your body may be accumulating stress and needs proper rest and recovery.';
String get todayRealtimeStressCautionDescription => 'Your body may be accumulating stress and needs proper rest and recovery.';
@override
String get todayRealtimeStressOverloadDescription =>
'Your body stress is clearly high. Reduce load and pay attention to sleep and recovery.';
String get todayRealtimeStressOverloadDescription => 'Your body stress is clearly high. Reduce load and pay attention to sleep and recovery.';
@override
String get todayRealtimeStressDivisionBaseline =>
'These ranges are adjusted dynamically based on your personal baseline and should not be directly compared between users.';
String get todayRealtimeStressDivisionBaseline => 'These ranges are adjusted dynamically based on your personal baseline and should not be directly compared between users.';
@override
String get todayRealtimeStressDivisionAwake =>
'Real-time stress mainly reflects body stress changes while awake.';
String get todayRealtimeStressDivisionAwake => 'Real-time stress mainly reflects body stress changes while awake.';
@override
String get todayRealtimeStressLowBetterTitle =>
'Is lower real-time stress always better?';
String get todayRealtimeStressLowBetterTitle => 'Is lower real-time stress always better?';
@override
String get todayRealtimeStressLowBetterNo => 'Not necessarily.';
@override
String get todayRealtimeStressLowBetterType =>
'Body stress can be normal or abnormal.';
String get todayRealtimeStressLowBetterType => 'Body stress can be normal or abnormal.';
@override
String get todayRealtimeStressLowBetterExample =>
'For example, real-time stress rising briefly during or after exercise is a normal recovery response. It can also rise temporarily during focused work or emotional excitement, which are normal body adjustments.';
String get todayRealtimeStressLowBetterExample => 'For example, real-time stress rising briefly during or after exercise is a normal recovery response. It can also rise temporarily during focused work or emotional excitement, which are normal body adjustments.';
@override
String get todayRealtimeStressLowBetterHighStress =>
'But if stress remains high while resting, sitting for a long time, or after poor sleep, it may indicate physical fatigue, mental stress, insufficient sleep recovery, incomplete exercise recovery, too much caffeine, alcohol, stimulants, or possible discomfort.';
String get todayRealtimeStressLowBetterHighStress => 'But if stress remains high while resting, sitting for a long time, or after poor sleep, it may indicate physical fatigue, mental stress, insufficient sleep recovery, incomplete exercise recovery, too much caffeine, alcohol, stimulants, or possible discomfort.';
@override
String get todayRealtimeStressLowBetterTrend =>
'DoubleFeel focuses more on your long-term trend than on a single fluctuation.';
String get todayRealtimeStressLowBetterTrend => 'DoubleFeel focuses more on your long-term trend than on a single fluctuation.';
@override
String get todayRealtimeStressScenarioTitle =>
'When should HRV and real-time stress be used?';
String get todayRealtimeStressScenarioTitle => 'When should HRV and real-time stress be used?';
@override
String get todayRealtimeStressScenarioHrvDefault =>
'With Apple Watch default settings, HRV updates every 2-5 hours.';
String get todayRealtimeStressScenarioHrvDefault => 'With Apple Watch default settings, HRV updates every 2-5 hours.';
@override
String get todayRealtimeStressScenarioRegionLimit =>
'In some regions, Apple Watch breathing features may be limited, which can affect HRV update frequency. Turning on breathing features may also consume more battery.';
String get todayRealtimeStressScenarioRegionLimit => 'In some regions, Apple Watch breathing features may be limited, which can affect HRV update frequency. Turning on breathing features may also consume more battery.';
@override
String get todayRealtimeStressScenarioIntro =>
'To address the long interval between HRV updates, DoubleFeel designed real-time stress:';
String get todayRealtimeStressScenarioIntro => 'To address the long interval between HRV updates, DoubleFeel designed real-time stress:';
@override
String get todayRealtimeStressScenarioUpdateEvery6Min =>
'· Real-time stress updates every 6 minutes';
String get todayRealtimeStressScenarioUpdateEvery6Min => '· Real-time stress updates every 6 minutes';
@override
String get todayRealtimeStressScenarioTimely =>
'· It can reflect body-state changes more promptly';
String get todayRealtimeStressScenarioTimely => '· It can reflect body-state changes more promptly';
@override
String get todayRealtimeStressScenarioConsistentTrend =>
'· In most cases, the real-time stress trend is consistent with the HRV trend';
String get todayRealtimeStressScenarioConsistentTrend => '· In most cases, the real-time stress trend is consistent with the HRV trend';
@override
String get todayRealtimeStressScenarioSummary =>
'This lets users see long-term HRV trends while also using real-time stress as a short-term body-state reference.';
String get todayRealtimeStressScenarioSummary => 'This lets users see long-term HRV trends while also using real-time stress as a short-term body-state reference.';
@override
String get todayFaqNoDataTitle =>
'What if the app or watch face has no data?';
String get todayFaqNoDataTitle => 'What if the app or watch face has no data?';
@override
String get todayFaqNoDataDescription1 =>
'1. Confirm that Apple Watch is on watchOS 10.0 or above and iPhone is on iOS 14 or above. You can check system versions in About.';
String get todayFaqNoDataDescription1 => '1. Confirm that Apple Watch is on watchOS 10.0 or above and iPhone is on iOS 14 or above. You can check system versions in About.';
@override
String get todayFaqNoDataDescription2 =>
'2. Confirm all permissions are enabled: iPhone Health > Sharing > Apps > DoubleFeel > Turn On All Permissions.';
String get todayFaqNoDataDescription2 => '2. Confirm all permissions are enabled: iPhone Health > Sharing > Apps > DoubleFeel > Turn On All Permissions.';
@override
String get todayFaqNoDataDescription3 =>
'3. Confirm the device is not in Low Power Mode, low battery, or worn too loosely, as these can affect data collection.';
String get todayFaqNoDataDescription3 => '3. Confirm the device is not in Low Power Mode, low battery, or worn too loosely, as these can affect data collection.';
@override
String get todayFaqContactPrefix =>
'If everything above is correct, you can ';
String get todayFaqContactPrefix => 'If everything above is correct, you can ';
@override
String get todayFaqContactAction => 'contact us';
... ... @@ -714,90 +618,70 @@ class AppLocalizationsEn extends AppLocalizations {
String get todayFaqContactSuffix => '.';
@override
String get todayFaqWatchNoNotificationTitle =>
'Watch cannot receive status notifications?';
String get todayFaqWatchNoNotificationTitle => 'Watch cannot receive status notifications?';
@override
String get todayFaqWatchNoNotificationDescription1 =>
'Apple Watch and iPhone notifications have priority rules: when your iPhone is unlocked and the screen is on, notifications only appear on the phone and will not appear on the watch.';
String get todayFaqWatchNoNotificationDescription1 => 'Apple Watch and iPhone notifications have priority rules: when your iPhone is unlocked and the screen is on, notifications only appear on the phone and will not appear on the watch.';
@override
String get todayFaqWatchNoNotificationDescription2 =>
'If stress data displays and updates normally but your watch does not receive notifications, try the following:';
String get todayFaqWatchNoNotificationDescription2 => 'If stress data displays and updates normally but your watch does not receive notifications, try the following:';
@override
String get todayFaqWatchNoNotificationCheckPhoneNotification =>
'1. Check whether iPhone notifications are enabled (Settings > DoubleFeel > Notifications).';
String get todayFaqWatchNoNotificationCheckPhoneNotification => '1. Check whether iPhone notifications are enabled (Settings > DoubleFeel > Notifications).';
@override
String get todayFaqWatchNoNotificationCheckPhoneBackgroundRefresh =>
'2. Check whether iPhone Background App Refresh is enabled (Settings > DoubleFeel > Background App Refresh).';
String get todayFaqWatchNoNotificationCheckPhoneBackgroundRefresh => '2. Check whether iPhone Background App Refresh is enabled (Settings > DoubleFeel > Background App Refresh).';
@override
String get todayFaqWatchNoNotificationCheckWatchBackgroundRefresh =>
'3. Check whether Apple Watch Background App Refresh is enabled (Settings > General > Background App Refresh, and make sure DoubleFeel is enabled).';
String get todayFaqWatchNoNotificationCheckWatchBackgroundRefresh => '3. Check whether Apple Watch Background App Refresh is enabled (Settings > General > Background App Refresh, and make sure DoubleFeel is enabled).';
@override
String get todayFaqWatchNoNotificationCheckModes =>
'4. Make sure Low Power, Focus, Do Not Disturb, Theater, Sleep, and similar modes are off.';
String get todayFaqWatchNoNotificationCheckModes => '4. Make sure Low Power, Focus, Do Not Disturb, Theater, Sleep, and similar modes are off.';
@override
String get todayFaqWatchNoNotificationReinstall =>
'5. Reinstall DoubleFeel and restart Apple Watch and iPhone.';
String get todayFaqWatchNoNotificationReinstall => '5. Reinstall DoubleFeel and restart Apple Watch and iPhone.';
@override
String get todayFaqWatchFaceDelayTitle =>
'Watch face data not updating or delayed?';
String get todayFaqWatchFaceDelayTitle => 'Watch face data not updating or delayed?';
@override
String get todayFaqWatchFaceDelayDescription1 =>
'Due to Apple system limits, all watch faces, third-party or official, may have delays from a few minutes to half an hour. Developers cannot control the refresh frequency.';
String get todayFaqWatchFaceDelayDescription1 => 'Due to Apple system limits, all watch faces, third-party or official, may have delays from a few minutes to half an hour. Developers cannot control the refresh frequency.';
@override
String get todayFaqWatchFaceDelayIfOverOneHour =>
'If the phone data refreshes but the watch face still has not updated after more than 1 hour:';
String get todayFaqWatchFaceDelayIfOverOneHour => 'If the phone data refreshes but the watch face still has not updated after more than 1 hour:';
@override
String get todayFaqWatchFaceDelayOpenWatchApp =>
'Manually open DoubleFeel on Apple Watch and wait about 1 minute.';
String get todayFaqWatchFaceDelayOpenWatchApp => 'Manually open DoubleFeel on Apple Watch and wait about 1 minute.';
@override
String get todayFaqWatchFaceDelayIfStill => 'If it still does not update:';
@override
String get todayFaqWatchFaceDelayRestartApp =>
'Close the DoubleFeel background process and restart it.';
String get todayFaqWatchFaceDelayRestartApp => 'Close the DoubleFeel background process and restart it.';
@override
String get todayFaqWatchFaceDelayCheckIntro =>
'If it still does not work, check:';
String get todayFaqWatchFaceDelayCheckIntro => 'If it still does not work, check:';
@override
String get todayFaqWatchFaceDelayCheckData =>
'· Whether both phone and watch apps can show HRV data normally.';
String get todayFaqWatchFaceDelayCheckData => '· Whether both phone and watch apps can show HRV data normally.';
@override
String get todayFaqWatchFaceDelayCheckPhoneHealth =>
'· Make sure all permissions are enabled on iPhone: iOS Settings > Privacy & Security > Health > DoubleFeel.';
String get todayFaqWatchFaceDelayCheckPhoneHealth => '· Make sure all permissions are enabled on iPhone: iOS Settings > Privacy & Security > Health > DoubleFeel.';
@override
String get todayFaqWatchFaceDelayCheckWatchHealth =>
'· Make sure all permissions are enabled on Apple Watch: Settings > Health > Data Sources & Access > DoubleFeel.';
String get todayFaqWatchFaceDelayCheckWatchHealth => '· Make sure all permissions are enabled on Apple Watch: Settings > Health > Data Sources & Access > DoubleFeel.';
@override
String get todayFaqWatchFaceDelayCheckBackgroundRefresh =>
'· Confirm DoubleFeel is enabled in Apple Watch > Settings > General > Background App Refresh.';
String get todayFaqWatchFaceDelayCheckBackgroundRefresh => '· Confirm DoubleFeel is enabled in Apple Watch > Settings > General > Background App Refresh.';
@override
String get todayFaqWatchFaceDelayRestartWatch =>
'· If it still does not refresh automatically, restart Apple Watch. Long runtimes or high background usage may cause watch face updates to pause.';
String get todayFaqWatchFaceDelayRestartWatch => '· If it still does not refresh automatically, restart Apple Watch. Long runtimes or high background usage may cause watch face updates to pause.';
@override
String get todayFaqWatchFaceBlackScreenTitle => 'Watch face turns black?';
@override
String get todayFaqWatchFaceBlackScreenDescription =>
'If the custom interactive watch face turns black after being added and only shows time and date, long-press the watch face, tap Edit, swipe left to Complications, choose DoubleFeel, and add each component again as needed.';
String get todayFaqWatchFaceBlackScreenDescription => 'If the custom interactive watch face turns black after being added and only shows time and date, long-press the watch face, tap Edit, swipe left to Complications, choose DoubleFeel, and add each component again as needed.';
@override
String get today => 'Today';
... ... @@ -815,19 +699,16 @@ class AppLocalizationsEn extends AppLocalizations {
String get allPlans => 'All Plans';
@override
String get clickToAddTheHrvThemedWatchFace =>
'Click to add the HRV-themed watch face';
String get clickToAddTheHrvThemedWatchFace => 'Click to add the HRV-themed watch face';
@override
String get stayOnTopOfYourHealthFluctuations =>
'Stay on top of your health fluctuations';
String get stayOnTopOfYourHealthFluctuations => 'Stay on top of your health fluctuations';
@override
String get addACloseContact => 'Add a close contact';
@override
String get oneMorePersonLookingOutForYourHealth =>
'One more person looking out for your health';
String get oneMorePersonLookingOutForYourHealth => 'One more person looking out for your health';
@override
String get addAFriend => 'Add a friend';
... ... @@ -884,8 +765,7 @@ class AppLocalizationsEn extends AppLocalizations {
String get questionsAndFeedback => 'Questions and Feedback';
@override
String get ifYouWouldLikeUsToReplyPleaseProvideYourEmailAddress =>
'If you would like us to reply, please provide your email address';
String get ifYouWouldLikeUsToReplyPleaseProvideYourEmailAddress => 'If you would like us to reply, please provide your email address';
@override
String get uploadProof => 'Upload Proof';
... ... @@ -894,8 +774,7 @@ class AppLocalizationsEn extends AppLocalizations {
String get frequentlyAskedQuestions => 'Frequently Asked Questions';
@override
String get areYouSureYouWantToDeleteYourAccount =>
'Are you sure you want to delete your account?';
String get areYouSureYouWantToDeleteYourAccount => 'Are you sure you want to delete your account?';
@override
String get accountSettings => 'Account Settings';
... ...