diff --git a/README.md b/README.md index 200b512..dd2f028 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,8 @@ ## 开发环境 - flutter:3.19.6 +- OpenJdk 17 +- Xcode 16.3 ## 目录说明 diff --git a/android/app/build.gradle b/android/app/build.gradle index d880db0..0471dc2 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -91,40 +91,14 @@ android { debug { // 使用默认 debug 签名(无需配置) } - skyDev { - keyAlias keystoreProperties['sky.dev.keyAlias'] - keyPassword keystoreProperties['sky.dev.keyPassword'] - storePassword keystoreProperties['sky.dev.storePassword'] - storeFile file(keystoreProperties['sky.dev.storeFile']) - } - - skyPre { - keyAlias keystoreProperties['sky.pre.keyAlias'] - keyPassword keystoreProperties['sky.pre.keyPassword'] - storePassword keystoreProperties['sky.pre.storePassword'] - storeFile file(keystoreProperties['sky.pre.storeFile']) - } - skyRelease { + sky { keyAlias keystoreProperties['sky.keyAlias'] keyPassword keystoreProperties['sky.keyPassword'] storeFile keystoreProperties['sky.storeFile'] ? file(keystoreProperties['sky.storeFile']) : null storePassword keystoreProperties['sky.storePassword'] } - xhjDev { - keyAlias keystoreProperties['xhj.dev.keyAlias'] - keyPassword keystoreProperties['xhj.dev.keyPassword'] - storePassword keystoreProperties['xhj.dev.storePassword'] - storeFile file(keystoreProperties['xhj.dev.storeFile']) - } - - xhjPre { - keyAlias keystoreProperties['xhj.pre.keyAlias'] - keyPassword keystoreProperties['xhj.pre.keyPassword'] - storePassword keystoreProperties['xhj.pre.storePassword'] - storeFile file(keystoreProperties['xhj.pre.storeFile']) - } - xhjRelease { + xhj { keyAlias keystoreProperties['xhj.keyAlias'] keyPassword keystoreProperties['xhj.keyPassword'] storeFile keystoreProperties['xhj.storeFile'] ? file(keystoreProperties['sky.storeFile']) : null diff --git a/android/app/flavorizr.gradle b/android/app/flavorizr.gradle index 57e666a..640b346 100644 --- a/android/app/flavorizr.gradle +++ b/android/app/flavorizr.gradle @@ -2,41 +2,19 @@ android { flavorDimensions += "flavor-type" productFlavors { - skyDev { - dimension "flavor-type" - applicationId "top.skychip.work.dev" - signingConfig signingConfigs.skyDev - resValue "string", "app_name", "星勤-sky-dev" - } - skyPre { - dimension "flavor-type" - applicationId "top.skychip.work.pre" - signingConfig signingConfigs.skyPre - resValue "string", "app_name", "星勤-sky-pre" - } - skyRelease { + + sky { dimension "flavor-type" applicationId "top.skychip.work" - signingConfig signingConfigs.skyRelease - resValue "string", "app_name", "星勤-sky-release" + signingConfig signingConfigs.sky + resValue "string", "app_name", "星勤-sky" } - xhjDev { - dimension "flavor-type" - applicationId "ltd.xhjcn.work.dev" - signingConfig signingConfigs.xhjDev - resValue "string", "app_name", "星勤-xhj-dev" - } - xhjPre { - dimension "flavor-type" - applicationId "ltd.xhjcn.work.pre" - signingConfig signingConfigs.xhjPre - resValue "string", "app_name", "星勤-xhj-pre" - } - xhjRelease { + + xhj { dimension "flavor-type" applicationId "ltd.xhjcn.work" - signingConfig signingConfigs.xhjRelease - resValue "string", "app_name", "星勤-xhj-release" + signingConfig signingConfigs.xhj + resValue "string", "app_name", "星勤-xhj" } } } \ No newline at end of file diff --git a/android/app/sky-dev-key.jks b/android/app/sky-dev-key.jks deleted file mode 100644 index 55efb76..0000000 Binary files a/android/app/sky-dev-key.jks and /dev/null differ diff --git a/android/app/sky-pre-key.jks b/android/app/sky-pre-key.jks deleted file mode 100644 index 0285ec1..0000000 Binary files a/android/app/sky-pre-key.jks and /dev/null differ diff --git a/android/app/src/skyDev/res/mipmap-hdpi/ic_launcher.png b/android/app/src/sky/res/mipmap-hdpi/ic_launcher.png similarity index 100% rename from android/app/src/skyDev/res/mipmap-hdpi/ic_launcher.png rename to android/app/src/sky/res/mipmap-hdpi/ic_launcher.png diff --git a/android/app/src/skyDev/res/mipmap-mdpi/ic_launcher.png b/android/app/src/sky/res/mipmap-mdpi/ic_launcher.png similarity index 100% rename from android/app/src/skyDev/res/mipmap-mdpi/ic_launcher.png rename to android/app/src/sky/res/mipmap-mdpi/ic_launcher.png diff --git a/android/app/src/skyDev/res/mipmap-xhdpi/ic_launcher.png b/android/app/src/sky/res/mipmap-xhdpi/ic_launcher.png similarity index 100% rename from android/app/src/skyDev/res/mipmap-xhdpi/ic_launcher.png rename to android/app/src/sky/res/mipmap-xhdpi/ic_launcher.png diff --git a/android/app/src/skyDev/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/sky/res/mipmap-xxhdpi/ic_launcher.png similarity index 100% rename from android/app/src/skyDev/res/mipmap-xxhdpi/ic_launcher.png rename to android/app/src/sky/res/mipmap-xxhdpi/ic_launcher.png diff --git a/android/app/src/skyDev/res/mipmap-xxxhdpi/ic_launcher.png b/android/app/src/sky/res/mipmap-xxxhdpi/ic_launcher.png similarity index 100% rename from android/app/src/skyDev/res/mipmap-xxxhdpi/ic_launcher.png rename to android/app/src/sky/res/mipmap-xxxhdpi/ic_launcher.png diff --git a/android/app/src/skyPre/res/mipmap-hdpi/ic_launcher.png b/android/app/src/skyPre/res/mipmap-hdpi/ic_launcher.png deleted file mode 100644 index 6e659a6..0000000 Binary files a/android/app/src/skyPre/res/mipmap-hdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/skyPre/res/mipmap-mdpi/ic_launcher.png b/android/app/src/skyPre/res/mipmap-mdpi/ic_launcher.png deleted file mode 100644 index 397c9c1..0000000 Binary files a/android/app/src/skyPre/res/mipmap-mdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/skyPre/res/mipmap-xhdpi/ic_launcher.png b/android/app/src/skyPre/res/mipmap-xhdpi/ic_launcher.png deleted file mode 100644 index 38dffd4..0000000 Binary files a/android/app/src/skyPre/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/skyPre/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/skyPre/res/mipmap-xxhdpi/ic_launcher.png deleted file mode 100644 index 8af6a3d..0000000 Binary files a/android/app/src/skyPre/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/skyPre/res/mipmap-xxxhdpi/ic_launcher.png b/android/app/src/skyPre/res/mipmap-xxxhdpi/ic_launcher.png deleted file mode 100644 index 0bc29a3..0000000 Binary files a/android/app/src/skyPre/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/skyRelease/res/mipmap-hdpi/ic_launcher.png b/android/app/src/skyRelease/res/mipmap-hdpi/ic_launcher.png deleted file mode 100644 index 6e659a6..0000000 Binary files a/android/app/src/skyRelease/res/mipmap-hdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/skyRelease/res/mipmap-mdpi/ic_launcher.png b/android/app/src/skyRelease/res/mipmap-mdpi/ic_launcher.png deleted file mode 100644 index 397c9c1..0000000 Binary files a/android/app/src/skyRelease/res/mipmap-mdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/skyRelease/res/mipmap-xhdpi/ic_launcher.png b/android/app/src/skyRelease/res/mipmap-xhdpi/ic_launcher.png deleted file mode 100644 index 38dffd4..0000000 Binary files a/android/app/src/skyRelease/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/skyRelease/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/skyRelease/res/mipmap-xxhdpi/ic_launcher.png deleted file mode 100644 index 8af6a3d..0000000 Binary files a/android/app/src/skyRelease/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/skyRelease/res/mipmap-xxxhdpi/ic_launcher.png b/android/app/src/skyRelease/res/mipmap-xxxhdpi/ic_launcher.png deleted file mode 100644 index 0bc29a3..0000000 Binary files a/android/app/src/skyRelease/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/xhjRelease/res/mipmap-hdpi/ic_launcher.png b/android/app/src/xhj/res/mipmap-hdpi/ic_launcher.png similarity index 100% rename from android/app/src/xhjRelease/res/mipmap-hdpi/ic_launcher.png rename to android/app/src/xhj/res/mipmap-hdpi/ic_launcher.png diff --git a/android/app/src/xhjRelease/res/mipmap-mdpi/ic_launcher.png b/android/app/src/xhj/res/mipmap-mdpi/ic_launcher.png similarity index 100% rename from android/app/src/xhjRelease/res/mipmap-mdpi/ic_launcher.png rename to android/app/src/xhj/res/mipmap-mdpi/ic_launcher.png diff --git a/android/app/src/xhjRelease/res/mipmap-xhdpi/ic_launcher.png b/android/app/src/xhj/res/mipmap-xhdpi/ic_launcher.png similarity index 100% rename from android/app/src/xhjRelease/res/mipmap-xhdpi/ic_launcher.png rename to android/app/src/xhj/res/mipmap-xhdpi/ic_launcher.png diff --git a/android/app/src/xhjRelease/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/xhj/res/mipmap-xxhdpi/ic_launcher.png similarity index 100% rename from android/app/src/xhjRelease/res/mipmap-xxhdpi/ic_launcher.png rename to android/app/src/xhj/res/mipmap-xxhdpi/ic_launcher.png diff --git a/android/app/src/xhjRelease/res/mipmap-xxxhdpi/ic_launcher.png b/android/app/src/xhj/res/mipmap-xxxhdpi/ic_launcher.png similarity index 100% rename from android/app/src/xhjRelease/res/mipmap-xxxhdpi/ic_launcher.png rename to android/app/src/xhj/res/mipmap-xxxhdpi/ic_launcher.png diff --git a/android/app/src/xhjDev/res/mipmap-hdpi/ic_launcher.png b/android/app/src/xhjDev/res/mipmap-hdpi/ic_launcher.png deleted file mode 100644 index 6e659a6..0000000 Binary files a/android/app/src/xhjDev/res/mipmap-hdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/xhjDev/res/mipmap-mdpi/ic_launcher.png b/android/app/src/xhjDev/res/mipmap-mdpi/ic_launcher.png deleted file mode 100644 index 397c9c1..0000000 Binary files a/android/app/src/xhjDev/res/mipmap-mdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/xhjDev/res/mipmap-xhdpi/ic_launcher.png b/android/app/src/xhjDev/res/mipmap-xhdpi/ic_launcher.png deleted file mode 100644 index 38dffd4..0000000 Binary files a/android/app/src/xhjDev/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/xhjDev/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/xhjDev/res/mipmap-xxhdpi/ic_launcher.png deleted file mode 100644 index 8af6a3d..0000000 Binary files a/android/app/src/xhjDev/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/xhjDev/res/mipmap-xxxhdpi/ic_launcher.png b/android/app/src/xhjDev/res/mipmap-xxxhdpi/ic_launcher.png deleted file mode 100644 index 0bc29a3..0000000 Binary files a/android/app/src/xhjDev/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/xhjPre/res/mipmap-hdpi/ic_launcher.png b/android/app/src/xhjPre/res/mipmap-hdpi/ic_launcher.png deleted file mode 100644 index 6e659a6..0000000 Binary files a/android/app/src/xhjPre/res/mipmap-hdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/xhjPre/res/mipmap-mdpi/ic_launcher.png b/android/app/src/xhjPre/res/mipmap-mdpi/ic_launcher.png deleted file mode 100644 index 397c9c1..0000000 Binary files a/android/app/src/xhjPre/res/mipmap-mdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/xhjPre/res/mipmap-xhdpi/ic_launcher.png b/android/app/src/xhjPre/res/mipmap-xhdpi/ic_launcher.png deleted file mode 100644 index 38dffd4..0000000 Binary files a/android/app/src/xhjPre/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/xhjPre/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/xhjPre/res/mipmap-xxhdpi/ic_launcher.png deleted file mode 100644 index 8af6a3d..0000000 Binary files a/android/app/src/xhjPre/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/xhjPre/res/mipmap-xxxhdpi/ic_launcher.png b/android/app/src/xhjPre/res/mipmap-xxxhdpi/ic_launcher.png deleted file mode 100644 index 0bc29a3..0000000 Binary files a/android/app/src/xhjPre/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/xhj-dev-key.jks b/android/app/xhj-dev-key.jks deleted file mode 100644 index 09a7b4e..0000000 Binary files a/android/app/xhj-dev-key.jks and /dev/null differ diff --git a/android/app/xhj-pre-key.jks b/android/app/xhj-pre-key.jks deleted file mode 100644 index 4bc2925..0000000 Binary files a/android/app/xhj-pre-key.jks and /dev/null differ diff --git a/android/gradle.properties b/android/gradle.properties index c5311ea..a41b3ff 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -1,4 +1,5 @@ org.gradle.jvmargs=-Xmx1536M android.useAndroidX=true android.enableJetifier=true -android.enableR8 = true \ No newline at end of file +android.enableR8 = true +org.gradle.java.home=/Library/Java/JavaVirtualMachines/openjdk-17.jdk/Contents/Home \ No newline at end of file diff --git a/android/key.properties b/android/key.properties index f073bbb..384ef7c 100644 --- a/android/key.properties +++ b/android/key.properties @@ -1,30 +1,9 @@ # sky ???? -sky.dev.storePassword=6z2geXWAozQ9KnN -sky.dev.keyPassword=6z2geXWAozQ9KnN -sky.dev.keyAlias=sky -sky.dev.storeFile=sky-dev-key.jks - -sky.pre.storePassword=t4JkYD1kHQxAbRU -sky.pre.keyPassword=t4JkYD1kHQxAbRU -sky.pre.keyAlias=sky -sky.pre.storeFile=sky-pre-key.jks - sky.storePassword=RHFn9LJcWHFxKmt sky.keyPassword=RHFn9LJcWHFxKmt sky.keyAlias=sky sky.storeFile=sky-release-key.jks - # xhj ???? -xhj.dev.storePassword=qKHWfxhmz8pJJjB -xhj.dev.keyPassword=qKHWfxhmz8pJJjB -xhj.dev.keyAlias=xhj -xhj.dev.storeFile=xhj-dev-key.jks - -xhj.pre.storePassword=oTqDmH64gQLxo4d -xhj.pre.keyPassword=oTqDmH64gQLxo4d -xhj.pre.keyAlias=xhj -xhj.pre.storeFile=xhj-pre-key.jks - xhj.storePassword=qoQGNcPCD0wtrV8 xhj.keyPassword=qoQGNcPCD0wtrV8 xhj.keyAlias=xhj diff --git a/flavorizr.yaml b/flavorizr.yaml index 2493983..e1f655f 100644 --- a/flavorizr.yaml +++ b/flavorizr.yaml @@ -1,112 +1,25 @@ -# 用于编译出不同的APPID - -# 生成:意思是将本文件定义的配置,生成对应的代码,或者原生的配置、构建过程、文件资源等 -# 风味用法:dart run flutter_flavorizr -p , - -# 以下行为都是覆盖,所以如果不是很清楚自己在做什么,请不要随意运行,以免覆盖有用的文件 -# 安卓图标:dart run flutter_flavorizr -p android:icons -# 安卓构建参数集配置:dart run flutter_flavorizr -p android:androidManifest -# 安卓构建目标配置:dart run flutter_flavorizr -p android:buildGradle -# 用法-生成iOS图标:dart run flutter_flavorizr -p ios:icons - -# Scheme 定义了构建目标、测试、运行、调试和分析应用程序的方式。它是Xcode中一个关键的组件,用于配置不同的构建设置和运行环境。 -# 可以有针对不同目的的多个Schemes,例如一个用于调试的Scheme、一个用于发布的Scheme,以及用于不同测试环境的Scheme。 -# 用法 :dart run flutter_flavorizr -p ios:schema - -# XCConfig文件是Xcode配置文件,用于外部化和管理项目的构建设置。通过使用这些文件,可以更容易地管理和共享构建配置。 -# 可以为不同的构建环境(如Debug和Release)或不同的应用flavor配置多个XCConfig文件。 -# 用法:dart run flutter_flavorizr -p ios:xcconfig - -# Build Target定义了一个构建过程,它描述了如何编译和链接构建应用程序的源代码。每个Target可以有不同的配置和目的(例如,一个应用程序Target、一个单元测试Target)。 -# 可能包括应用程序本身的Target、测试Target、用于不同flavor的Target,或者针对不同平台(如iOS和macOS)的Target。 -# 用法:dart run flutter_flavorizr -p ios:buildTargets - -# Plist文件用于存储应用程序的配置信息,如应用版本号、显示名称等。它是一个XML文件,Xcode在构建应用程序时会读取它 -# 每个Target通常有自己的Info.plist文件,还可能有其他Plist文件来管理不同的配置和设置。 -# 用法:dart run flutter_flavorizr -p ios:plist - -# LaunchScreen(启动屏幕)是应用启动时显示的界面,通常包含应用的Logo和名称。它在应用加载期间显示,提供更好的用户体验。 -# 可以针对不同的设备和屏幕尺寸配置多个LaunchScreen,或者为不同的版本或flavor提供不同的启动屏幕。 -# 用法:dart run flutter_flavorizr -p ios:launchScreen - - -# 项目运行说明:添加不同风味后,不能再使用flutter默认的运行方式`flutter run`,而是需要指定运行的风味 -# flutter run --flavor -t lib/main_.dart -# 注意,这里有 入口文件(main_.dart) 和 口味() 两个参数 -# 其中入口文件在代码中指定运行时的差异,例如 页面上的名称、颜色、API请求的域名等 -# 而 口味 指定 构建差异,例如 APPID、Logo、应用名称等 -# 下面是4个运行示例: -# flutter run --flavor dev -t lib/main_dev.dart -# flutter run --flavor pre -t lib/main_pre.dart -# flutter run --flavor sky -t lib/main_sky_full.dart -# flutter run --flavor xhj -t lib/main_xhj_full.dart - -# 下面是安卓发布编译命令 -# flutter build apk --split-per-abi --release --flavor sky -t lib/main_sky_full.dart -# flutter build apk --release --flavor sky -t lib/main_sky_full.dart - app: android: flavorDimensions: "flavor-type" flavors: - skyDev: + sky: app: - name: "星勤-sky-dev" - icon: "assets/logo/dev.png" - android: - applicationId: "com.skychip.work.dev" - customConfig: - signingConfig: signingConfigs.dev - ios: - bundleId: "com.skychip.work.dev" - skyPre: - app: - name: "星勤-sky-pre" - icon: "assets/logo/pre.png" - android: - applicationId: "com.skychip.work.pre" - customConfig: - signingConfig: signingConfigs.pre - ios: - bundleId: "com.skychip.work.pre" - skyRelease: - app: - name: "星勤-sky-release" + name: "星勤-sky" icon: "assets/logo/sky.png" android: - applicationId: "com.skychip.work" + applicationId: "top.skychip.work" customConfig: signingConfig: signingConfigs.sky ios: - bundleId: "com.skychip.work" - xhjDev: + bundleId: "top.skychip.work" + xhj: app: - name: "星勤-xhj-dev" - icon: "assets/logo/dev.png" - android: - applicationId: "com.xhjcn.work.dev" - customConfig: - signingConfig: signingConfigs.dev - ios: - bundleId: "com.xhjcn.work.dev" - xhjPre: - app: - name: "星勤-xhj-pre" - icon: "assets/logo/pre.png" - android: - applicationId: "com.xhjcn.work.pre" - customConfig: - signingConfig: signingConfigs.pre - ios: - bundleId: "com.xhjcn.work.pre" - xhjRelease: - app: - name: "星勤-xhj-release" + name: "星勤-xhj" icon: "assets/logo/xhj.png" android: - applicationId: "com.xhjcn.work" + applicationId: "ltd.xhjcn.work" customConfig: signingConfig: signingConfigs.xhj ios: - bundleId: "com.xhjcn.work" + bundleId: "ltd.xhjcn.work" ide: idea diff --git a/ios/Flutter/skyDebug.xcconfig b/ios/Flutter/skyDebug.xcconfig index 223b03e..9cd4ec3 100644 --- a/ios/Flutter/skyDebug.xcconfig +++ b/ios/Flutter/skyDebug.xcconfig @@ -1,4 +1,4 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug-sky.xcconfig" #include "Generated.xcconfig" ASSET_PREFIX=sky diff --git a/ios/Flutter/skyDevDebug.xcconfig b/ios/Flutter/skyDevDebug.xcconfig deleted file mode 100644 index af1467f..0000000 --- a/ios/Flutter/skyDevDebug.xcconfig +++ /dev/null @@ -1,6 +0,0 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" -#include "Generated.xcconfig" - -ASSET_PREFIX=skyDev -BUNDLE_NAME=星勤-sky-dev -BUNDLE_DISPLAY_NAME=星勤-sky-dev diff --git a/ios/Flutter/skyDevProfile.xcconfig b/ios/Flutter/skyDevProfile.xcconfig deleted file mode 100644 index 05fd55a..0000000 --- a/ios/Flutter/skyDevProfile.xcconfig +++ /dev/null @@ -1,6 +0,0 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" -#include "Generated.xcconfig" - -ASSET_PREFIX=skyDev -BUNDLE_NAME=星勤-sky-dev -BUNDLE_DISPLAY_NAME=星勤-sky-dev diff --git a/ios/Flutter/skyDevRelease.xcconfig b/ios/Flutter/skyDevRelease.xcconfig deleted file mode 100644 index 05fd55a..0000000 --- a/ios/Flutter/skyDevRelease.xcconfig +++ /dev/null @@ -1,6 +0,0 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" -#include "Generated.xcconfig" - -ASSET_PREFIX=skyDev -BUNDLE_NAME=星勤-sky-dev -BUNDLE_DISPLAY_NAME=星勤-sky-dev diff --git a/ios/Flutter/skyPreDebug.xcconfig b/ios/Flutter/skyPreDebug.xcconfig deleted file mode 100644 index 1a8acb1..0000000 --- a/ios/Flutter/skyPreDebug.xcconfig +++ /dev/null @@ -1,6 +0,0 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" -#include "Generated.xcconfig" - -ASSET_PREFIX=skyPre -BUNDLE_NAME=星勤-sky-pre -BUNDLE_DISPLAY_NAME=星勤-sky-pre diff --git a/ios/Flutter/skyPreProfile.xcconfig b/ios/Flutter/skyPreProfile.xcconfig deleted file mode 100644 index b395ab3..0000000 --- a/ios/Flutter/skyPreProfile.xcconfig +++ /dev/null @@ -1,6 +0,0 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" -#include "Generated.xcconfig" - -ASSET_PREFIX=skyPre -BUNDLE_NAME=星勤-sky-pre -BUNDLE_DISPLAY_NAME=星勤-sky-pre diff --git a/ios/Flutter/skyPreRelease.xcconfig b/ios/Flutter/skyPreRelease.xcconfig deleted file mode 100644 index b395ab3..0000000 --- a/ios/Flutter/skyPreRelease.xcconfig +++ /dev/null @@ -1,6 +0,0 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" -#include "Generated.xcconfig" - -ASSET_PREFIX=skyPre -BUNDLE_NAME=星勤-sky-pre -BUNDLE_DISPLAY_NAME=星勤-sky-pre diff --git a/ios/Flutter/skyProfile.xcconfig b/ios/Flutter/skyProfile.xcconfig index a664fe7..1c1f4e7 100644 --- a/ios/Flutter/skyProfile.xcconfig +++ b/ios/Flutter/skyProfile.xcconfig @@ -1,4 +1,4 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.profile-sky.xcconfig" #include "Generated.xcconfig" ASSET_PREFIX=sky diff --git a/ios/Flutter/skyRelease.xcconfig b/ios/Flutter/skyRelease.xcconfig index a664fe7..fe98b81 100644 --- a/ios/Flutter/skyRelease.xcconfig +++ b/ios/Flutter/skyRelease.xcconfig @@ -1,6 +1,6 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release-sky.xcconfig" #include "Generated.xcconfig" ASSET_PREFIX=sky BUNDLE_NAME=星勤-sky -BUNDLE_DISPLAY_NAME=星勤-sky +BUNDLE_DISPLAY_NAME=星勤-sky \ No newline at end of file diff --git a/ios/Flutter/skyReleaseDebug.xcconfig b/ios/Flutter/skyReleaseDebug.xcconfig deleted file mode 100644 index 29df336..0000000 --- a/ios/Flutter/skyReleaseDebug.xcconfig +++ /dev/null @@ -1,6 +0,0 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" -#include "Generated.xcconfig" - -ASSET_PREFIX=skyRelease -BUNDLE_NAME=星勤-sky-release -BUNDLE_DISPLAY_NAME=星勤-sky-release diff --git a/ios/Flutter/skyReleaseProfile.xcconfig b/ios/Flutter/skyReleaseProfile.xcconfig deleted file mode 100644 index 271dc57..0000000 --- a/ios/Flutter/skyReleaseProfile.xcconfig +++ /dev/null @@ -1,6 +0,0 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" -#include "Generated.xcconfig" - -ASSET_PREFIX=skyRelease -BUNDLE_NAME=星勤-sky-release -BUNDLE_DISPLAY_NAME=星勤-sky-release diff --git a/ios/Flutter/skyReleaseRelease.xcconfig b/ios/Flutter/skyReleaseRelease.xcconfig deleted file mode 100644 index 271dc57..0000000 --- a/ios/Flutter/skyReleaseRelease.xcconfig +++ /dev/null @@ -1,6 +0,0 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" -#include "Generated.xcconfig" - -ASSET_PREFIX=skyRelease -BUNDLE_NAME=星勤-sky-release -BUNDLE_DISPLAY_NAME=星勤-sky-release diff --git a/ios/Flutter/xhjDebug.xcconfig b/ios/Flutter/xhjDebug.xcconfig index 1dd1f86..213dc8f 100644 --- a/ios/Flutter/xhjDebug.xcconfig +++ b/ios/Flutter/xhjDebug.xcconfig @@ -1,4 +1,4 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug-xhj.xcconfig" #include "Generated.xcconfig" ASSET_PREFIX=xhj diff --git a/ios/Flutter/xhjDevDebug.xcconfig b/ios/Flutter/xhjDevDebug.xcconfig deleted file mode 100644 index f3cc65c..0000000 --- a/ios/Flutter/xhjDevDebug.xcconfig +++ /dev/null @@ -1,6 +0,0 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" -#include "Generated.xcconfig" - -ASSET_PREFIX=xhjDev -BUNDLE_NAME=星勤-xhj-dev -BUNDLE_DISPLAY_NAME=星勤-xhj-dev diff --git a/ios/Flutter/xhjDevProfile.xcconfig b/ios/Flutter/xhjDevProfile.xcconfig deleted file mode 100644 index 2a001e8..0000000 --- a/ios/Flutter/xhjDevProfile.xcconfig +++ /dev/null @@ -1,6 +0,0 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" -#include "Generated.xcconfig" - -ASSET_PREFIX=xhjDev -BUNDLE_NAME=星勤-xhj-dev -BUNDLE_DISPLAY_NAME=星勤-xhj-dev diff --git a/ios/Flutter/xhjDevRelease.xcconfig b/ios/Flutter/xhjDevRelease.xcconfig deleted file mode 100644 index 2a001e8..0000000 --- a/ios/Flutter/xhjDevRelease.xcconfig +++ /dev/null @@ -1,6 +0,0 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" -#include "Generated.xcconfig" - -ASSET_PREFIX=xhjDev -BUNDLE_NAME=星勤-xhj-dev -BUNDLE_DISPLAY_NAME=星勤-xhj-dev diff --git a/ios/Flutter/xhjPreDebug.xcconfig b/ios/Flutter/xhjPreDebug.xcconfig deleted file mode 100644 index d35792c..0000000 --- a/ios/Flutter/xhjPreDebug.xcconfig +++ /dev/null @@ -1,6 +0,0 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" -#include "Generated.xcconfig" - -ASSET_PREFIX=xhjPre -BUNDLE_NAME=星勤-xhj-pre -BUNDLE_DISPLAY_NAME=星勤-xhj-pre diff --git a/ios/Flutter/xhjPreProfile.xcconfig b/ios/Flutter/xhjPreProfile.xcconfig deleted file mode 100644 index 9a994df..0000000 --- a/ios/Flutter/xhjPreProfile.xcconfig +++ /dev/null @@ -1,6 +0,0 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" -#include "Generated.xcconfig" - -ASSET_PREFIX=xhjPre -BUNDLE_NAME=星勤-xhj-pre -BUNDLE_DISPLAY_NAME=星勤-xhj-pre diff --git a/ios/Flutter/xhjPreRelease.xcconfig b/ios/Flutter/xhjPreRelease.xcconfig deleted file mode 100644 index 9a994df..0000000 --- a/ios/Flutter/xhjPreRelease.xcconfig +++ /dev/null @@ -1,6 +0,0 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" -#include "Generated.xcconfig" - -ASSET_PREFIX=xhjPre -BUNDLE_NAME=星勤-xhj-pre -BUNDLE_DISPLAY_NAME=星勤-xhj-pre diff --git a/ios/Flutter/xhjProfile.xcconfig b/ios/Flutter/xhjProfile.xcconfig index 7732273..c76d83e 100644 --- a/ios/Flutter/xhjProfile.xcconfig +++ b/ios/Flutter/xhjProfile.xcconfig @@ -1,4 +1,4 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.profile-xhj.xcconfig" #include "Generated.xcconfig" ASSET_PREFIX=xhj diff --git a/ios/Flutter/xhjRelease.xcconfig b/ios/Flutter/xhjRelease.xcconfig index 7732273..92f0883 100644 --- a/ios/Flutter/xhjRelease.xcconfig +++ b/ios/Flutter/xhjRelease.xcconfig @@ -1,6 +1,6 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release-xhj.xcconfig" #include "Generated.xcconfig" ASSET_PREFIX=xhj BUNDLE_NAME=星勤-xhj -BUNDLE_DISPLAY_NAME=星勤-xhj +BUNDLE_DISPLAY_NAME=星勤-xhj \ No newline at end of file diff --git a/ios/Flutter/xhjReleaseDebug.xcconfig b/ios/Flutter/xhjReleaseDebug.xcconfig deleted file mode 100644 index 120d1b1..0000000 --- a/ios/Flutter/xhjReleaseDebug.xcconfig +++ /dev/null @@ -1,6 +0,0 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" -#include "Generated.xcconfig" - -ASSET_PREFIX=xhjRelease -BUNDLE_NAME=星勤-xhj-release -BUNDLE_DISPLAY_NAME=星勤-xhj-release diff --git a/ios/Flutter/xhjReleaseProfile.xcconfig b/ios/Flutter/xhjReleaseProfile.xcconfig deleted file mode 100644 index 987642f..0000000 --- a/ios/Flutter/xhjReleaseProfile.xcconfig +++ /dev/null @@ -1,6 +0,0 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" -#include "Generated.xcconfig" - -ASSET_PREFIX=xhjRelease -BUNDLE_NAME=星勤-xhj-release -BUNDLE_DISPLAY_NAME=星勤-xhj-release diff --git a/ios/Flutter/xhjReleaseRelease.xcconfig b/ios/Flutter/xhjReleaseRelease.xcconfig deleted file mode 100644 index 987642f..0000000 --- a/ios/Flutter/xhjReleaseRelease.xcconfig +++ /dev/null @@ -1,6 +0,0 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" -#include "Generated.xcconfig" - -ASSET_PREFIX=xhjRelease -BUNDLE_NAME=星勤-xhj-release -BUNDLE_DISPLAY_NAME=星勤-xhj-release diff --git a/ios/Podfile b/ios/Podfile index f3dc1e0..b484d90 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -5,24 +5,12 @@ ENV['COCOAPODS_DISABLE_STATS'] = 'true' project 'Runner', { - 'Debug-skyDev' => :debug, - 'Profile-skyDev' => :release, - 'Release-skyDev' => :release, - 'Debug-skyPre' => :debug, - 'Profile-skyPre' => :release, - 'Release-skyPre' => :release, - 'Debug-skyRelease' => :debug, - 'Profile-skyRelease' => :release, - 'Release-skyRelease' => :release, - 'Debug-xhjDev' => :debug, - 'Profile-xhjDev' => :release, - 'Release-xhjDev' => :release, - 'Debug-xhjPre' => :debug, - 'Profile-xhjPre' => :release, - 'Release-xhjPre' => :release, - 'Debug-xhjRelease' => :debug, - 'Profile-xhjRelease' => :release, - 'Release-xhjRelease' => :release, + 'Debug-sky' => :debug, + 'Profile-sky' => :release, + 'Release-sky' => :release, + 'Debug-xhj' => :debug, + 'Profile-xhj' => :release, + 'Release-xhj' => :release, } def flutter_root diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 17485a1..d268cc8 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -1,29 +1,42 @@ PODS: - Flutter (1.0.0) + - flutter_blue_plus_darwin (0.0.2): + - Flutter + - FlutterMacOS - permission_handler_apple (9.3.0): - Flutter - shared_preferences_foundation (0.0.1): - Flutter - FlutterMacOS + - starcloud (0.0.1): + - Flutter DEPENDENCIES: - Flutter (from `Flutter`) + - flutter_blue_plus_darwin (from `.symlinks/plugins/flutter_blue_plus_darwin/darwin`) - permission_handler_apple (from `.symlinks/plugins/permission_handler_apple/ios`) - shared_preferences_foundation (from `.symlinks/plugins/shared_preferences_foundation/darwin`) + - starcloud (from `.symlinks/plugins/starcloud/ios`) EXTERNAL SOURCES: Flutter: :path: Flutter + flutter_blue_plus_darwin: + :path: ".symlinks/plugins/flutter_blue_plus_darwin/darwin" permission_handler_apple: :path: ".symlinks/plugins/permission_handler_apple/ios" shared_preferences_foundation: :path: ".symlinks/plugins/shared_preferences_foundation/darwin" + starcloud: + :path: ".symlinks/plugins/starcloud/ios" SPEC CHECKSUMS: Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7 + flutter_blue_plus_darwin: 20a08bfeaa0f7804d524858d3d8744bcc1b6dbc3 permission_handler_apple: 4ed2196e43d0651e8ff7ca3483a069d469701f2d shared_preferences_foundation: 9e1978ff2562383bd5676f64ec4e9aa8fa06a6f7 + starcloud: 0d2034397e2a0d81b8c187b99bd2de7371ea5b2d -PODFILE CHECKSUM: 57bd38e05d8abd584f51ed04c5c011347b25b1a3 +PODFILE CHECKSUM: fbdae9471aca60c39ad623cd945ad8e2e75a0c21 COCOAPODS: 1.16.2 diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj index 285b277..4663863 100644 --- a/ios/Runner.xcodeproj/project.pbxproj +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -7,41 +7,27 @@ objects = { /* Begin PBXBuildFile section */ - 016BFB570FED0A4AAFB1189C /* skyReleaseProfile.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 926E06CA8F15A766AD877601 /* skyReleaseProfile.xcconfig */; }; 0ADA86289BADF970CC4187B9 /* skyDebug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 611820587117D6B2F8AFF8D6 /* skyDebug.xcconfig */; }; 0C917CD229E4390EF74EF5A4 /* preProfile.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = F4AF5B4663EE6CFC7029B5AB /* preProfile.xcconfig */; }; 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; 1813E133A5B9A02135AD37F1 /* xhjPreLaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 5BE5A13FC9E35B42FFFA74DF /* xhjPreLaunchScreen.storyboard */; }; - 2D912A8505F8472969C1E572 /* xhjDevDebug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 1453DAC93CF879A52228589D /* xhjDevDebug.xcconfig */; }; - 2E86F0D8BA4AEFB7E1A16064 /* skyDevRelease.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 521739435370021315B3CAB0 /* skyDevRelease.xcconfig */; }; 30AB308776D59EDB710FB160 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8E3703788F12596F8E25A8CA /* Pods_RunnerTests.framework */; }; 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; }; - 3631D5C2A43CD75207684A95 /* skyDevProfile.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = FDC3EF322F90C4A846E98D28 /* skyDevProfile.xcconfig */; }; 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; - 3DD4F0A40552E23840ADFC65 /* xhjReleaseRelease.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 44C3A9A4A6B7F782019DC9E4 /* xhjReleaseRelease.xcconfig */; }; 3E6D499861B63368587F595A /* xhjProfile.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 1762BB277A17EFCD3D9EB55B /* xhjProfile.xcconfig */; }; 3E8F77030650302FCE5B80CB /* xhjLaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 73D318DE025B3B715F0836DE /* xhjLaunchScreen.storyboard */; }; - 46ACDD0F780C7693E6C88612 /* xhjDevRelease.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 539C2D3FA6928C05F4C984FE /* xhjDevRelease.xcconfig */; }; 4DF7C481DC95D8C121BB1D7A /* xhjDebug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 031263CFBED2AAE746A59A79 /* xhjDebug.xcconfig */; }; 50C608D512C7F31C550E8B26 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B72A935FCFAAD621BF3B600 /* Pods_Runner.framework */; }; 55832D097115F4DB4BB9447E /* preLaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C7A2A99F200E17F29B17F2AB /* preLaunchScreen.storyboard */; }; - 62435099E6080B873995D708 /* skyPreRelease.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 5D9C8C08D94D17A41C07E0C2 /* skyPreRelease.xcconfig */; }; - 67E390011AFF7870D9BF0736 /* xhjPreProfile.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = BECFB24D71AD033D1AD26998 /* xhjPreProfile.xcconfig */; }; 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; 8349575E7843D62E00372BCA /* skyRelease.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = E045491EBE71709DCA299FC1 /* skyRelease.xcconfig */; }; - 879FA6E1F4FF171D6923A373 /* xhjPreDebug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = F0DEF3DDACAFA607D45CA0D8 /* xhjPreDebug.xcconfig */; }; 8C3C06C4AF57BFED1E0AE8C4 /* preDebug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 400DDA5ABA71AC3571ECDFD8 /* preDebug.xcconfig */; }; 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; - 9F9AAE71754FB26A851686E0 /* xhjPreRelease.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = F4610AE7DDC510B141C52F75 /* xhjPreRelease.xcconfig */; }; - A03C5F65DD0AE41CF23391DE /* xhjReleaseDebug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 159A7021B439CC23D881BE8B /* xhjReleaseDebug.xcconfig */; }; - A2BB12BB306AF4FEE1233CE8 /* skyPreDebug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 30DDE98C4D8703B5AB7B685E /* skyPreDebug.xcconfig */; }; A5C800C554FBC610CBFCFC17 /* skyPreLaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 60FFAA284D5DBE9EE25508B0 /* skyPreLaunchScreen.storyboard */; }; A70F3B370150BC61FD4B6F65 /* skyProfile.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = F1A6CE68A52F14794E4A7230 /* skyProfile.xcconfig */; }; - A7103C7B9DC46513E4348C4E /* xhjReleaseProfile.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = E3D78CE59950994CCAD086B2 /* xhjReleaseProfile.xcconfig */; }; B34799943EC618B0B318D1EB /* devDebug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = FB7D8A153F874F70FE3D326E /* devDebug.xcconfig */; }; - B74CA9984A69E1CBEF4E2685 /* skyReleaseDebug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = AF5C4914468E0989D0D82A6D /* skyReleaseDebug.xcconfig */; }; BF1B36DC288F49AE1D7CB2BD /* preRelease.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 4F6DFC2AFBDA247EA0342119 /* preRelease.xcconfig */; }; C28BA5BAE072CAD95EBF0097 /* xhjRelease.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = F98DF82AFA0A3ACD0765FDAE /* xhjRelease.xcconfig */; }; C33ED0183AA0E719BE017BD8 /* devRelease.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = FA0DB0963AD4A96F52F525B9 /* devRelease.xcconfig */; }; @@ -49,13 +35,9 @@ D52671A7B21981F392674B0D /* xhjDevLaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 0B7E4F390850F88D0A30EC61 /* xhjDevLaunchScreen.storyboard */; }; E16AA87C87B92AC4E758AE4E /* skyReleaseLaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 4F9A73744DA607D0ABF62C5A /* skyReleaseLaunchScreen.storyboard */; }; E1C2F6D3D21AF0A9CC29D9B1 /* skyLaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 8340FC20EF2CC5FCD200C7A8 /* skyLaunchScreen.storyboard */; }; - EA1906A9377B8DF5A10CB946 /* xhjDevProfile.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 7D7A6233EF2108AD4DA29797 /* xhjDevProfile.xcconfig */; }; - EA8EAC5D883FAE74AEB63A0A /* skyReleaseRelease.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = C67AF0A7644DDD913055370A /* skyReleaseRelease.xcconfig */; }; ECFBB4CC680EDD4112980259 /* xhjReleaseLaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 67E6F6C3412AB339172CA451 /* xhjReleaseLaunchScreen.storyboard */; }; EE077124327BA497709C1427 /* devLaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 286A61E75C655C4DBC7AEFA3 /* devLaunchScreen.storyboard */; }; - F1F27C61093EFA2C652B2B60 /* skyDevDebug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 04A5EFE52B54D25EF1BD80C1 /* skyDevDebug.xcconfig */; }; F2C3FDDDFC8DC903CE7B77A3 /* devProfile.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = DE2BB4D7FB4686B8AED3104D /* devProfile.xcconfig */; }; - F62FC32C81AAB3373A04F2D5 /* skyPreProfile.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 81DED2D90516855F3B194308 /* skyPreProfile.xcconfig */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -85,18 +67,17 @@ 02F70943DBD5A64AFA896289 /* Pods-RunnerTests.release-xhjpre.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release-xhjpre.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release-xhjpre.xcconfig"; sourceTree = ""; }; 031263CFBED2AAE746A59A79 /* xhjDebug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = xhjDebug.xcconfig; path = Flutter/xhjDebug.xcconfig; sourceTree = ""; }; 03220490A4DAE5DD18B7808D /* Pods-RunnerTests.release-xhjdev.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release-xhjdev.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release-xhjdev.xcconfig"; sourceTree = ""; }; + 032B4841959E887FE5A71B20 /* Pods-RunnerTests.release-sky.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release-sky.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release-sky.xcconfig"; sourceTree = ""; }; 043E75FBC5BAE43BDB90E715 /* Pods-Runner.debug-sky.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug-sky.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug-sky.xcconfig"; sourceTree = ""; }; - 04A5EFE52B54D25EF1BD80C1 /* skyDevDebug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = skyDevDebug.xcconfig; path = Flutter/skyDevDebug.xcconfig; sourceTree = ""; }; + 093ED3AA12E1EB3E6E5B77C5 /* Pods-RunnerTests.profile-sky.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile-sky.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile-sky.xcconfig"; sourceTree = ""; }; 0B7E4F390850F88D0A30EC61 /* xhjDevLaunchScreen.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = xhjDevLaunchScreen.storyboard; path = Runner/xhjDevLaunchScreen.storyboard; sourceTree = ""; }; 0E3F8734D9767C653F3FAD44 /* Pods-RunnerTests.release-skydev.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release-skydev.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release-skydev.xcconfig"; sourceTree = ""; }; 0FAF16A2CEB1CDCB20BC2772 /* Pods-Runner.profile-skypre.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile-skypre.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile-skypre.xcconfig"; sourceTree = ""; }; 103A5E672934053959F35C56 /* Pods-RunnerTests.release-skyrelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release-skyrelease.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release-skyrelease.xcconfig"; sourceTree = ""; }; 11F89EE2E3EED2E3DD9C86E9 /* Pods-RunnerTests.profile-skypre.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile-skypre.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile-skypre.xcconfig"; sourceTree = ""; }; - 1453DAC93CF879A52228589D /* xhjDevDebug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = xhjDevDebug.xcconfig; path = Flutter/xhjDevDebug.xcconfig; sourceTree = ""; }; 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; 152AD635A2088A3254E5B277 /* Pods-RunnerTests.debug-xhjpre.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug-xhjpre.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug-xhjpre.xcconfig"; sourceTree = ""; }; - 159A7021B439CC23D881BE8B /* xhjReleaseDebug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = xhjReleaseDebug.xcconfig; path = Flutter/xhjReleaseDebug.xcconfig; sourceTree = ""; }; 1762BB277A17EFCD3D9EB55B /* xhjProfile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = xhjProfile.xcconfig; path = Flutter/xhjProfile.xcconfig; sourceTree = ""; }; 1A6ADFF47376D3EF39A06A50 /* Pods-Runner.debug-xhjrelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug-xhjrelease.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug-xhjrelease.xcconfig"; sourceTree = ""; }; 1A80E55948298C26E5470F66 /* Pods-RunnerTests.debug-xhjrelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug-xhjrelease.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug-xhjrelease.xcconfig"; sourceTree = ""; }; @@ -105,7 +86,7 @@ 2C1E340616C269CF61511909 /* Pods-RunnerTests.profile-skyrelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile-skyrelease.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile-skyrelease.xcconfig"; sourceTree = ""; }; 2DA6A091FC5350CFAEA9CF00 /* skyDevLaunchScreen.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = skyDevLaunchScreen.storyboard; path = Runner/skyDevLaunchScreen.storyboard; sourceTree = ""; }; 2DF5EC0F7DCE5FC09A604CD7 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; }; - 30DDE98C4D8703B5AB7B685E /* skyPreDebug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = skyPreDebug.xcconfig; path = Flutter/skyPreDebug.xcconfig; sourceTree = ""; }; + 32A94B3E7A720A007CEF5F31 /* Pods-RunnerTests.debug-sky.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug-sky.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug-sky.xcconfig"; sourceTree = ""; }; 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 3772067509177DEAEB15096A /* Pods-RunnerTests.release-xhjrelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release-xhjrelease.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release-xhjrelease.xcconfig"; sourceTree = ""; }; @@ -116,20 +97,17 @@ 400DDA5ABA71AC3571ECDFD8 /* preDebug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = preDebug.xcconfig; path = Flutter/preDebug.xcconfig; sourceTree = ""; }; 40B80627513965DD3A940E1E /* Pods-RunnerTests.debug-skyrelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug-skyrelease.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug-skyrelease.xcconfig"; sourceTree = ""; }; 43593863AAB6C42AE1A1B664 /* Pods-Runner.profile-pre.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile-pre.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile-pre.xcconfig"; sourceTree = ""; }; - 44C3A9A4A6B7F782019DC9E4 /* xhjReleaseRelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = xhjReleaseRelease.xcconfig; path = Flutter/xhjReleaseRelease.xcconfig; sourceTree = ""; }; 4AF8C5340B988A4AB5593BA1 /* Pods-Runner.profile-skydev.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile-skydev.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile-skydev.xcconfig"; sourceTree = ""; }; 4F6DFC2AFBDA247EA0342119 /* preRelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = preRelease.xcconfig; path = Flutter/preRelease.xcconfig; sourceTree = ""; }; 4F9A73744DA607D0ABF62C5A /* skyReleaseLaunchScreen.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = skyReleaseLaunchScreen.storyboard; path = Runner/skyReleaseLaunchScreen.storyboard; sourceTree = ""; }; 517C3C0797C305420583FA00 /* Pods-Runner.release-pre.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release-pre.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release-pre.xcconfig"; sourceTree = ""; }; - 521739435370021315B3CAB0 /* skyDevRelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = skyDevRelease.xcconfig; path = Flutter/skyDevRelease.xcconfig; sourceTree = ""; }; - 539C2D3FA6928C05F4C984FE /* xhjDevRelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = xhjDevRelease.xcconfig; path = Flutter/xhjDevRelease.xcconfig; sourceTree = ""; }; 5553C6A467728DD321A3B5E5 /* Pods-RunnerTests.profile-xhjdev.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile-xhjdev.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile-xhjdev.xcconfig"; sourceTree = ""; }; 5704DDAD591945712FD286AB /* Pods-Runner.debug-xhjdev.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug-xhjdev.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug-xhjdev.xcconfig"; sourceTree = ""; }; 5BE5A13FC9E35B42FFFA74DF /* xhjPreLaunchScreen.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = xhjPreLaunchScreen.storyboard; path = Runner/xhjPreLaunchScreen.storyboard; sourceTree = ""; }; - 5D9C8C08D94D17A41C07E0C2 /* skyPreRelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = skyPreRelease.xcconfig; path = Flutter/skyPreRelease.xcconfig; sourceTree = ""; }; 5E1FB85329E3B530AB783B54 /* Pods-Runner.profile-xhjrelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile-xhjrelease.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile-xhjrelease.xcconfig"; sourceTree = ""; }; 60FFAA284D5DBE9EE25508B0 /* skyPreLaunchScreen.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = skyPreLaunchScreen.storyboard; path = Runner/skyPreLaunchScreen.storyboard; sourceTree = ""; }; 611820587117D6B2F8AFF8D6 /* skyDebug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = skyDebug.xcconfig; path = Flutter/skyDebug.xcconfig; sourceTree = ""; }; + 647D041C61EC0D9020C81DD6 /* Pods-RunnerTests.profile-xhj.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile-xhj.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile-xhj.xcconfig"; sourceTree = ""; }; 67E6F6C3412AB339172CA451 /* xhjReleaseLaunchScreen.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = xhjReleaseLaunchScreen.storyboard; path = Runner/xhjReleaseLaunchScreen.storyboard; sourceTree = ""; }; 694692FDAF5CB51B684200DB /* Pods-RunnerTests.release-skypre.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release-skypre.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release-skypre.xcconfig"; sourceTree = ""; }; 72EC30EF092E08C4EF183BC3 /* Pods-Runner.debug-pre.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug-pre.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug-pre.xcconfig"; sourceTree = ""; }; @@ -139,15 +117,13 @@ 778769B78AB576C93B17D041 /* Pods-Runner.release-sky.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release-sky.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release-sky.xcconfig"; sourceTree = ""; }; 7A310BAD19E5F780137A6B4B /* Pods-Runner.release-xhj.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release-xhj.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release-xhj.xcconfig"; sourceTree = ""; }; 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; - 7D7A6233EF2108AD4DA29797 /* xhjDevProfile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = xhjDevProfile.xcconfig; path = Flutter/xhjDevProfile.xcconfig; sourceTree = ""; }; 7EE510D990399212622E0549 /* Pods-Runner.debug-dev.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug-dev.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug-dev.xcconfig"; sourceTree = ""; }; 7F24ADCE5B7052E0A19C1387 /* Pods-RunnerTests.profile-skydev.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile-skydev.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile-skydev.xcconfig"; sourceTree = ""; }; 8161D090C95EBDC924250298 /* Pods-RunnerTests.profile-xhjpre.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile-xhjpre.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile-xhjpre.xcconfig"; sourceTree = ""; }; - 81DED2D90516855F3B194308 /* skyPreProfile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = skyPreProfile.xcconfig; path = Flutter/skyPreProfile.xcconfig; sourceTree = ""; }; 8340FC20EF2CC5FCD200C7A8 /* skyLaunchScreen.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = skyLaunchScreen.storyboard; path = Runner/skyLaunchScreen.storyboard; sourceTree = ""; }; 84D64E157C4BA3E946C12BE3 /* Pods-RunnerTests.debug-xhjdev.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug-xhjdev.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug-xhjdev.xcconfig"; sourceTree = ""; }; + 8D69E0B00EEFAB6ED73331CD /* Pods-RunnerTests.release-xhj.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release-xhj.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release-xhj.xcconfig"; sourceTree = ""; }; 8E3703788F12596F8E25A8CA /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 926E06CA8F15A766AD877601 /* skyReleaseProfile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = skyReleaseProfile.xcconfig; path = Flutter/skyReleaseProfile.xcconfig; sourceTree = ""; }; 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -161,38 +137,32 @@ ABD886848F99AA0B1CB4330D /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; }; AC549AE8B1B62CAB829AFDC9 /* Pods-Runner.release-skydev.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release-skydev.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release-skydev.xcconfig"; sourceTree = ""; }; AE407C7AB961458A1DE953C2 /* Pods-Runner.debug-xhjpre.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug-xhjpre.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug-xhjpre.xcconfig"; sourceTree = ""; }; - AF5C4914468E0989D0D82A6D /* skyReleaseDebug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = skyReleaseDebug.xcconfig; path = Flutter/skyReleaseDebug.xcconfig; sourceTree = ""; }; AF5EB32017D6DEA63438C7D2 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; }; B03F184E4E19C6D1CFDFC1B9 /* Pods-Runner.profile-xhjdev.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile-xhjdev.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile-xhjdev.xcconfig"; sourceTree = ""; }; BCAA375B2D264255CE0E9FC7 /* Pods-RunnerTests.debug-skydev.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug-skydev.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug-skydev.xcconfig"; sourceTree = ""; }; - BECFB24D71AD033D1AD26998 /* xhjPreProfile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = xhjPreProfile.xcconfig; path = Flutter/xhjPreProfile.xcconfig; sourceTree = ""; }; C4399A1C32E49BAFDC817DE2 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; }; - C67AF0A7644DDD913055370A /* skyReleaseRelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = skyReleaseRelease.xcconfig; path = Flutter/skyReleaseRelease.xcconfig; sourceTree = ""; }; C7A2A99F200E17F29B17F2AB /* preLaunchScreen.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = preLaunchScreen.storyboard; path = Runner/preLaunchScreen.storyboard; sourceTree = ""; }; CFFEE97B583E0A157AC26EBA /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; }; + DB3196B4AD304783DA5CA5AC /* Pods-RunnerTests.debug-xhj.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug-xhj.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug-xhj.xcconfig"; sourceTree = ""; }; DD1E2291969FACC46115015C /* Pods-Runner.release-xhjpre.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release-xhjpre.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release-xhjpre.xcconfig"; sourceTree = ""; }; DE2BB4D7FB4686B8AED3104D /* devProfile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = devProfile.xcconfig; path = Flutter/devProfile.xcconfig; sourceTree = ""; }; DFB4FA7E7FD58D28DB571229 /* Pods-RunnerTests.profile-xhjrelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile-xhjrelease.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile-xhjrelease.xcconfig"; sourceTree = ""; }; E045491EBE71709DCA299FC1 /* skyRelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = skyRelease.xcconfig; path = Flutter/skyRelease.xcconfig; sourceTree = ""; }; E0BA9A4F4B8F7B38C3ECD943 /* Pods-Runner.debug-skypre.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug-skypre.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug-skypre.xcconfig"; sourceTree = ""; }; E37E719EE1C603DF8AB0BAB6 /* Pods-Runner.debug-skyrelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug-skyrelease.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug-skyrelease.xcconfig"; sourceTree = ""; }; - E3D78CE59950994CCAD086B2 /* xhjReleaseProfile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = xhjReleaseProfile.xcconfig; path = Flutter/xhjReleaseProfile.xcconfig; sourceTree = ""; }; E581C5CA24EA83DCDE697AFA /* Pods-Runner.debug-xhj.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug-xhj.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug-xhj.xcconfig"; sourceTree = ""; }; E5B4BF4EED19B58F2163CD83 /* Pods-Runner.release-dev.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release-dev.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release-dev.xcconfig"; sourceTree = ""; }; EBBD1BD37B9334DA85AB9644 /* Pods-Runner.release-xhjrelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release-xhjrelease.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release-xhjrelease.xcconfig"; sourceTree = ""; }; - F0DEF3DDACAFA607D45CA0D8 /* xhjPreDebug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = xhjPreDebug.xcconfig; path = Flutter/xhjPreDebug.xcconfig; sourceTree = ""; }; F140F84C39F09F9412219F25 /* Pods-Runner.debug-skydev.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug-skydev.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug-skydev.xcconfig"; sourceTree = ""; }; F1A6CE68A52F14794E4A7230 /* skyProfile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = skyProfile.xcconfig; path = Flutter/skyProfile.xcconfig; sourceTree = ""; }; F23B1305373DD22477608D00 /* Pods-Runner.release-xhjdev.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release-xhjdev.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release-xhjdev.xcconfig"; sourceTree = ""; }; F2CBE55286BA531CF3CDD7DF /* Pods-Runner.release-skyrelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release-skyrelease.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release-skyrelease.xcconfig"; sourceTree = ""; }; - F4610AE7DDC510B141C52F75 /* xhjPreRelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = xhjPreRelease.xcconfig; path = Flutter/xhjPreRelease.xcconfig; sourceTree = ""; }; F4AF5B4663EE6CFC7029B5AB /* preProfile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = preProfile.xcconfig; path = Flutter/preProfile.xcconfig; sourceTree = ""; }; F61D9177BE686B11CAD9F2C8 /* Pods-Runner.release-skypre.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release-skypre.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release-skypre.xcconfig"; sourceTree = ""; }; F7DF580155593472508E1D90 /* Pods-Runner.profile-skyrelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile-skyrelease.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile-skyrelease.xcconfig"; sourceTree = ""; }; F98DF82AFA0A3ACD0765FDAE /* xhjRelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = xhjRelease.xcconfig; path = Flutter/xhjRelease.xcconfig; sourceTree = ""; }; FA0DB0963AD4A96F52F525B9 /* devRelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = devRelease.xcconfig; path = Flutter/devRelease.xcconfig; sourceTree = ""; }; FB7D8A153F874F70FE3D326E /* devDebug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = devDebug.xcconfig; path = Flutter/devDebug.xcconfig; sourceTree = ""; }; - FDC3EF322F90C4A846E98D28 /* skyDevProfile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = skyDevProfile.xcconfig; path = Flutter/skyDevProfile.xcconfig; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -280,6 +250,12 @@ 1A80E55948298C26E5470F66 /* Pods-RunnerTests.debug-xhjrelease.xcconfig */, DFB4FA7E7FD58D28DB571229 /* Pods-RunnerTests.profile-xhjrelease.xcconfig */, 3772067509177DEAEB15096A /* Pods-RunnerTests.release-xhjrelease.xcconfig */, + 32A94B3E7A720A007CEF5F31 /* Pods-RunnerTests.debug-sky.xcconfig */, + 093ED3AA12E1EB3E6E5B77C5 /* Pods-RunnerTests.profile-sky.xcconfig */, + 032B4841959E887FE5A71B20 /* Pods-RunnerTests.release-sky.xcconfig */, + DB3196B4AD304783DA5CA5AC /* Pods-RunnerTests.debug-xhj.xcconfig */, + 647D041C61EC0D9020C81DD6 /* Pods-RunnerTests.profile-xhj.xcconfig */, + 8D69E0B00EEFAB6ED73331CD /* Pods-RunnerTests.release-xhj.xcconfig */, ); path = Pods; sourceTree = ""; @@ -303,24 +279,6 @@ 031263CFBED2AAE746A59A79 /* xhjDebug.xcconfig */, 1762BB277A17EFCD3D9EB55B /* xhjProfile.xcconfig */, F98DF82AFA0A3ACD0765FDAE /* xhjRelease.xcconfig */, - 04A5EFE52B54D25EF1BD80C1 /* skyDevDebug.xcconfig */, - FDC3EF322F90C4A846E98D28 /* skyDevProfile.xcconfig */, - 521739435370021315B3CAB0 /* skyDevRelease.xcconfig */, - 30DDE98C4D8703B5AB7B685E /* skyPreDebug.xcconfig */, - 81DED2D90516855F3B194308 /* skyPreProfile.xcconfig */, - 5D9C8C08D94D17A41C07E0C2 /* skyPreRelease.xcconfig */, - AF5C4914468E0989D0D82A6D /* skyReleaseDebug.xcconfig */, - 926E06CA8F15A766AD877601 /* skyReleaseProfile.xcconfig */, - C67AF0A7644DDD913055370A /* skyReleaseRelease.xcconfig */, - 1453DAC93CF879A52228589D /* xhjDevDebug.xcconfig */, - 7D7A6233EF2108AD4DA29797 /* xhjDevProfile.xcconfig */, - 539C2D3FA6928C05F4C984FE /* xhjDevRelease.xcconfig */, - F0DEF3DDACAFA607D45CA0D8 /* xhjPreDebug.xcconfig */, - BECFB24D71AD033D1AD26998 /* xhjPreProfile.xcconfig */, - F4610AE7DDC510B141C52F75 /* xhjPreRelease.xcconfig */, - 159A7021B439CC23D881BE8B /* xhjReleaseDebug.xcconfig */, - E3D78CE59950994CCAD086B2 /* xhjReleaseProfile.xcconfig */, - 44C3A9A4A6B7F782019DC9E4 /* xhjReleaseRelease.xcconfig */, ); name = Flutter; sourceTree = ""; @@ -496,24 +454,6 @@ 55832D097115F4DB4BB9447E /* preLaunchScreen.storyboard in Resources */, E1C2F6D3D21AF0A9CC29D9B1 /* skyLaunchScreen.storyboard in Resources */, 3E8F77030650302FCE5B80CB /* xhjLaunchScreen.storyboard in Resources */, - F1F27C61093EFA2C652B2B60 /* skyDevDebug.xcconfig in Resources */, - 3631D5C2A43CD75207684A95 /* skyDevProfile.xcconfig in Resources */, - 2E86F0D8BA4AEFB7E1A16064 /* skyDevRelease.xcconfig in Resources */, - A2BB12BB306AF4FEE1233CE8 /* skyPreDebug.xcconfig in Resources */, - F62FC32C81AAB3373A04F2D5 /* skyPreProfile.xcconfig in Resources */, - 62435099E6080B873995D708 /* skyPreRelease.xcconfig in Resources */, - B74CA9984A69E1CBEF4E2685 /* skyReleaseDebug.xcconfig in Resources */, - 016BFB570FED0A4AAFB1189C /* skyReleaseProfile.xcconfig in Resources */, - EA8EAC5D883FAE74AEB63A0A /* skyReleaseRelease.xcconfig in Resources */, - 2D912A8505F8472969C1E572 /* xhjDevDebug.xcconfig in Resources */, - EA1906A9377B8DF5A10CB946 /* xhjDevProfile.xcconfig in Resources */, - 46ACDD0F780C7693E6C88612 /* xhjDevRelease.xcconfig in Resources */, - 879FA6E1F4FF171D6923A373 /* xhjPreDebug.xcconfig in Resources */, - 67E390011AFF7870D9BF0736 /* xhjPreProfile.xcconfig in Resources */, - 9F9AAE71754FB26A851686E0 /* xhjPreRelease.xcconfig in Resources */, - A03C5F65DD0AE41CF23391DE /* xhjReleaseDebug.xcconfig in Resources */, - A7103C7B9DC46513E4348C4E /* xhjReleaseProfile.xcconfig in Resources */, - 3DD4F0A40552E23840ADFC65 /* xhjReleaseRelease.xcconfig in Resources */, CE4627E8C2AB2CDDDC9B2D07 /* skyDevLaunchScreen.storyboard in Resources */, A5C800C554FBC610CBFCFC17 /* skyPreLaunchScreen.storyboard in Resources */, E16AA87C87B92AC4E758AE4E /* skyReleaseLaunchScreen.storyboard in Resources */, @@ -685,225 +625,9 @@ /* End PBXVariantGroup section */ /* Begin XCBuildConfiguration section */ - 0487248D2E60463A00F4D195 /* Debug-skyDev */ = { + 04B6D88D2E6AB73000B1BA5B /* Debug-sky */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BCAA375B2D264255CE0E9FC7 /* Pods-RunnerTests.debug-skydev.xcconfig */; - buildSettings = { - PRODUCT_NAME = RunnerTests; - }; - name = "Debug-skyDev"; - }; - 0487248E2E60463A00F4D195 /* Profile-skyDev */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7F24ADCE5B7052E0A19C1387 /* Pods-RunnerTests.profile-skydev.xcconfig */; - buildSettings = { - PRODUCT_NAME = RunnerTests; - }; - name = "Profile-skyDev"; - }; - 0487248F2E60463A00F4D195 /* Release-skyDev */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0E3F8734D9767C653F3FAD44 /* Pods-RunnerTests.release-skydev.xcconfig */; - buildSettings = { - PRODUCT_NAME = RunnerTests; - }; - name = "Release-skyDev"; - }; - 048724902E60463A00F4D195 /* Debug-skyPre */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 227DE666E965CEBE534C1BF6 /* Pods-RunnerTests.debug-skypre.xcconfig */; - buildSettings = { - PRODUCT_NAME = RunnerTests; - }; - name = "Debug-skyPre"; - }; - 048724912E60463A00F4D195 /* Profile-skyPre */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 11F89EE2E3EED2E3DD9C86E9 /* Pods-RunnerTests.profile-skypre.xcconfig */; - buildSettings = { - PRODUCT_NAME = RunnerTests; - }; - name = "Profile-skyPre"; - }; - 048724922E60463A00F4D195 /* Release-skyPre */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 694692FDAF5CB51B684200DB /* Pods-RunnerTests.release-skypre.xcconfig */; - buildSettings = { - PRODUCT_NAME = RunnerTests; - }; - name = "Release-skyPre"; - }; - 048724932E60463A00F4D195 /* Debug-skyRelease */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 40B80627513965DD3A940E1E /* Pods-RunnerTests.debug-skyrelease.xcconfig */; - buildSettings = { - PRODUCT_NAME = RunnerTests; - }; - name = "Debug-skyRelease"; - }; - 048724942E60463A00F4D195 /* Profile-skyRelease */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2C1E340616C269CF61511909 /* Pods-RunnerTests.profile-skyrelease.xcconfig */; - buildSettings = { - PRODUCT_NAME = RunnerTests; - }; - name = "Profile-skyRelease"; - }; - 048724952E60463A00F4D195 /* Release-skyRelease */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 103A5E672934053959F35C56 /* Pods-RunnerTests.release-skyrelease.xcconfig */; - buildSettings = { - PRODUCT_NAME = RunnerTests; - }; - name = "Release-skyRelease"; - }; - 048724962E60463A00F4D195 /* Debug-xhjDev */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 84D64E157C4BA3E946C12BE3 /* Pods-RunnerTests.debug-xhjdev.xcconfig */; - buildSettings = { - PRODUCT_NAME = RunnerTests; - }; - name = "Debug-xhjDev"; - }; - 048724972E60463A00F4D195 /* Profile-xhjDev */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5553C6A467728DD321A3B5E5 /* Pods-RunnerTests.profile-xhjdev.xcconfig */; - buildSettings = { - PRODUCT_NAME = RunnerTests; - }; - name = "Profile-xhjDev"; - }; - 048724982E60463A00F4D195 /* Release-xhjDev */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 03220490A4DAE5DD18B7808D /* Pods-RunnerTests.release-xhjdev.xcconfig */; - buildSettings = { - PRODUCT_NAME = RunnerTests; - }; - name = "Release-xhjDev"; - }; - 048724992E60463A00F4D195 /* Debug-xhjPre */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 152AD635A2088A3254E5B277 /* Pods-RunnerTests.debug-xhjpre.xcconfig */; - buildSettings = { - PRODUCT_NAME = RunnerTests; - }; - name = "Debug-xhjPre"; - }; - 0487249A2E60463A00F4D195 /* Profile-xhjPre */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8161D090C95EBDC924250298 /* Pods-RunnerTests.profile-xhjpre.xcconfig */; - buildSettings = { - PRODUCT_NAME = RunnerTests; - }; - name = "Profile-xhjPre"; - }; - 0487249B2E60463A00F4D195 /* Release-xhjPre */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 02F70943DBD5A64AFA896289 /* Pods-RunnerTests.release-xhjpre.xcconfig */; - buildSettings = { - PRODUCT_NAME = RunnerTests; - }; - name = "Release-xhjPre"; - }; - 0487249C2E60463A00F4D195 /* Debug-xhjRelease */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1A80E55948298C26E5470F66 /* Pods-RunnerTests.debug-xhjrelease.xcconfig */; - buildSettings = { - PRODUCT_NAME = RunnerTests; - }; - name = "Debug-xhjRelease"; - }; - 0487249D2E60463A00F4D195 /* Profile-xhjRelease */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DFB4FA7E7FD58D28DB571229 /* Pods-RunnerTests.profile-xhjrelease.xcconfig */; - buildSettings = { - PRODUCT_NAME = RunnerTests; - }; - name = "Profile-xhjRelease"; - }; - 0487249E2E60463A00F4D195 /* Release-xhjRelease */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3772067509177DEAEB15096A /* Pods-RunnerTests.release-xhjrelease.xcconfig */; - buildSettings = { - PRODUCT_NAME = RunnerTests; - }; - name = "Release-xhjRelease"; - }; - 0B5ADFDB871D338206AA0B31 /* Release-skyPre */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5D9C8C08D94D17A41C07E0C2 /* skyPreRelease.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = "$(ASSET_PREFIX)AppIcon"; - ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - INFOPLIST_FILE = Runner/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_BUNDLE_IDENTIFIER = com.skychip.work.pre; - SDKROOT = iphoneos; - SUPPORTED_PLATFORMS = iphoneos; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_OPTIMIZATION_LEVEL = "-O"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Release-skyPre"; - }; - 1E5874F04DFCB86D9A5B967B /* Debug-skyDev */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 04A5EFE52B54D25EF1BD80C1 /* skyDevDebug.xcconfig */; + baseConfigurationReference = 611820587117D6B2F8AFF8D6 /* skyDebug.xcconfig */; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; ASSETCATALOG_COMPILER_APPICON_NAME = "$(ASSET_PREFIX)AppIcon"; @@ -974,273 +698,28 @@ SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; }; - name = "Debug-skyDev"; + name = "Debug-sky"; }; - 241C55C606402F4383F5373A /* Debug-xhjDev */ = { + 04B6D88E2E6AB73000B1BA5B /* Debug-sky */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1453DAC93CF879A52228589D /* xhjDevDebug.xcconfig */; + baseConfigurationReference = 611820587117D6B2F8AFF8D6 /* skyDebug.xcconfig */; buildSettings = { + DEVELOPMENT_TEAM = NAQ5PL2DYC; PRODUCT_NAME = "$(TARGET_NAME)"; }; - name = "Debug-xhjDev"; + name = "Debug-sky"; }; - 27855E74D34704D4902DD915 /* Profile-skyDev */ = { + 04B6D88F2E6AB73000B1BA5B /* Debug-sky */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FDC3EF322F90C4A846E98D28 /* skyDevProfile.xcconfig */; + baseConfigurationReference = 32A94B3E7A720A007CEF5F31 /* Pods-RunnerTests.debug-sky.xcconfig */; buildSettings = { - PRODUCT_NAME = "$(TARGET_NAME)"; + PRODUCT_NAME = RunnerTests; }; - name = "Profile-skyDev"; + name = "Debug-sky"; }; - 28F14AA8A7C4A6D8E64E2550 /* Release-skyPre */ = { + 04B6D8902E6ABBAC00B1BA5B /* Profile-sky */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5D9C8C08D94D17A41C07E0C2 /* skyPreRelease.xcconfig */; - buildSettings = { - DEVELOPMENT_TEAM = ""; - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = "Release-skyPre"; - }; - 35F20574584CF7FF9C884E06 /* Profile-xhjPre */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BECFB24D71AD033D1AD26998 /* xhjPreProfile.xcconfig */; - buildSettings = { - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = "Profile-xhjPre"; - }; - 38D44F6C817E7E950124AC86 /* Debug-xhjPre */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F0DEF3DDACAFA607D45CA0D8 /* xhjPreDebug.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = "$(ASSET_PREFIX)AppIcon"; - ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - INFOPLIST_FILE = Runner/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - PRODUCT_BUNDLE_IDENTIFIER = com.xhjcn.work.pre; - SDKROOT = iphoneos; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = "Debug-xhjPre"; - }; - 4377114462E55AC8F249339C /* Profile-skyPre */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 81DED2D90516855F3B194308 /* skyPreProfile.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = "$(ASSET_PREFIX)AppIcon"; - ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - INFOPLIST_FILE = Runner/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_BUNDLE_IDENTIFIER = com.skychip.work.pre; - SDKROOT = iphoneos; - SUPPORTED_PLATFORMS = iphoneos; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Profile-skyPre"; - }; - 43D0B7AD5F70302D1A2BFE1C /* Profile-skyPre */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 81DED2D90516855F3B194308 /* skyPreProfile.xcconfig */; - buildSettings = { - DEVELOPMENT_TEAM = ""; - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = "Profile-skyPre"; - }; - 4977CA54B1A2733747392801 /* Debug-xhjDev */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1453DAC93CF879A52228589D /* xhjDevDebug.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = "$(ASSET_PREFIX)AppIcon"; - ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - INFOPLIST_FILE = Runner/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - PRODUCT_BUNDLE_IDENTIFIER = com.xhjcn.work.dev; - SDKROOT = iphoneos; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = "Debug-xhjDev"; - }; - 5763DF6CDD3726E8432EFE44 /* Profile-skyDev */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FDC3EF322F90C4A846E98D28 /* skyDevProfile.xcconfig */; + baseConfigurationReference = F1A6CE68A52F14794E4A7230 /* skyProfile.xcconfig */; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; ASSETCATALOG_COMPILER_APPICON_NAME = "$(ASSET_PREFIX)AppIcon"; @@ -1306,733 +785,28 @@ TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; - name = "Profile-skyDev"; + name = "Profile-sky"; }; - 59389674064F3FF8FD160202 /* Debug-skyRelease */ = { + 04B6D8912E6ABBAC00B1BA5B /* Profile-sky */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AF5C4914468E0989D0D82A6D /* skyReleaseDebug.xcconfig */; + baseConfigurationReference = F1A6CE68A52F14794E4A7230 /* skyProfile.xcconfig */; buildSettings = { + DEVELOPMENT_TEAM = NAQ5PL2DYC; PRODUCT_NAME = "$(TARGET_NAME)"; }; - name = "Debug-skyRelease"; + name = "Profile-sky"; }; - 5C31AF279386FEA5C7114EA1 /* Debug-skyRelease */ = { + 04B6D8922E6ABBAC00B1BA5B /* Profile-sky */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AF5C4914468E0989D0D82A6D /* skyReleaseDebug.xcconfig */; + baseConfigurationReference = 093ED3AA12E1EB3E6E5B77C5 /* Pods-RunnerTests.profile-sky.xcconfig */; buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = "$(ASSET_PREFIX)AppIcon"; - ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - INFOPLIST_FILE = Runner/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - PRODUCT_BUNDLE_IDENTIFIER = com.skychip.work; - SDKROOT = iphoneos; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; + PRODUCT_NAME = RunnerTests; }; - name = "Debug-skyRelease"; + name = "Profile-sky"; }; - 657573D001631CFE7125B731 /* Release-xhjDev */ = { + 04B6D8932E6ABBCF00B1BA5B /* Release-sky */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 539C2D3FA6928C05F4C984FE /* xhjDevRelease.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = "$(ASSET_PREFIX)AppIcon"; - ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - INFOPLIST_FILE = Runner/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_BUNDLE_IDENTIFIER = com.xhjcn.work.dev; - SDKROOT = iphoneos; - SUPPORTED_PLATFORMS = iphoneos; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_OPTIMIZATION_LEVEL = "-O"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Release-xhjDev"; - }; - 697FA0085E5FB99C10C9FD64 /* Release-xhjRelease */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 44C3A9A4A6B7F782019DC9E4 /* xhjReleaseRelease.xcconfig */; - buildSettings = { - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = "Release-xhjRelease"; - }; - 6A98BCCFF82BEFF3DA6B6C48 /* Profile-xhjDev */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7D7A6233EF2108AD4DA29797 /* xhjDevProfile.xcconfig */; - buildSettings = { - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = "Profile-xhjDev"; - }; - 7480C82F5DED9D8898B29DFB /* Profile-skyRelease */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 926E06CA8F15A766AD877601 /* skyReleaseProfile.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = "$(ASSET_PREFIX)AppIcon"; - ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - INFOPLIST_FILE = Runner/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_BUNDLE_IDENTIFIER = com.skychip.work; - SDKROOT = iphoneos; - SUPPORTED_PLATFORMS = iphoneos; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Profile-skyRelease"; - }; - 770BFC954CC1FBA82928AA90 /* Debug-skyPre */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 30DDE98C4D8703B5AB7B685E /* skyPreDebug.xcconfig */; - buildSettings = { - DEVELOPMENT_TEAM = ""; - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = "Debug-skyPre"; - }; - 7C6A14E7BE6FFD8D31D2B2B2 /* Debug-xhjRelease */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 159A7021B439CC23D881BE8B /* xhjReleaseDebug.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = "$(ASSET_PREFIX)AppIcon"; - ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - INFOPLIST_FILE = Runner/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - PRODUCT_BUNDLE_IDENTIFIER = com.xhjcn.work; - SDKROOT = iphoneos; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = "Debug-xhjRelease"; - }; - 91BE2D1B03804EA644DF96DB /* Debug-skyPre */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 30DDE98C4D8703B5AB7B685E /* skyPreDebug.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = "$(ASSET_PREFIX)AppIcon"; - ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - INFOPLIST_FILE = Runner/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - PRODUCT_BUNDLE_IDENTIFIER = com.skychip.work.pre; - SDKROOT = iphoneos; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = "Debug-skyPre"; - }; - 97FC569C845AF4B34E6DDF9A /* Profile-xhjDev */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7D7A6233EF2108AD4DA29797 /* xhjDevProfile.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = "$(ASSET_PREFIX)AppIcon"; - ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - INFOPLIST_FILE = Runner/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_BUNDLE_IDENTIFIER = com.xhjcn.work.dev; - SDKROOT = iphoneos; - SUPPORTED_PLATFORMS = iphoneos; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Profile-xhjDev"; - }; - 9EFFDF15EE96EEF55ECED5D1 /* Profile-xhjPre */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BECFB24D71AD033D1AD26998 /* xhjPreProfile.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = "$(ASSET_PREFIX)AppIcon"; - ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - INFOPLIST_FILE = Runner/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_BUNDLE_IDENTIFIER = com.xhjcn.work.pre; - SDKROOT = iphoneos; - SUPPORTED_PLATFORMS = iphoneos; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Profile-xhjPre"; - }; - A0ABE4B05B56DE6B3650743A /* Debug-skyDev */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 04A5EFE52B54D25EF1BD80C1 /* skyDevDebug.xcconfig */; - buildSettings = { - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = "Debug-skyDev"; - }; - A30147DAA88276B5327DCC33 /* Release-xhjPre */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F4610AE7DDC510B141C52F75 /* xhjPreRelease.xcconfig */; - buildSettings = { - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = "Release-xhjPre"; - }; - B1802E3C6F5EFE17A6C3EA94 /* Release-xhjPre */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F4610AE7DDC510B141C52F75 /* xhjPreRelease.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = "$(ASSET_PREFIX)AppIcon"; - ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - INFOPLIST_FILE = Runner/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_BUNDLE_IDENTIFIER = com.xhjcn.work.pre; - SDKROOT = iphoneos; - SUPPORTED_PLATFORMS = iphoneos; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_OPTIMIZATION_LEVEL = "-O"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Release-xhjPre"; - }; - B7AE9FE0996D5E49C686855A /* Debug-xhjRelease */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 159A7021B439CC23D881BE8B /* xhjReleaseDebug.xcconfig */; - buildSettings = { - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = "Debug-xhjRelease"; - }; - BDB82702D99A2F755CCBA34B /* Profile-skyRelease */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 926E06CA8F15A766AD877601 /* skyReleaseProfile.xcconfig */; - buildSettings = { - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = "Profile-skyRelease"; - }; - BE6E758EAB4D237376646C82 /* Profile-xhjRelease */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E3D78CE59950994CCAD086B2 /* xhjReleaseProfile.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = "$(ASSET_PREFIX)AppIcon"; - ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - INFOPLIST_FILE = Runner/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/Flutter", - ); - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_BUNDLE_IDENTIFIER = com.xhjcn.work; - SDKROOT = iphoneos; - SUPPORTED_PLATFORMS = iphoneos; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Profile-xhjRelease"; - }; - C01F159F7C1BA7D64F2B8A45 /* Release-skyDev */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 521739435370021315B3CAB0 /* skyDevRelease.xcconfig */; - buildSettings = { - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = "Release-skyDev"; - }; - D7190C00512EB3710E68AA6B /* Release-skyDev */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 521739435370021315B3CAB0 /* skyDevRelease.xcconfig */; + baseConfigurationReference = E045491EBE71709DCA299FC1 /* skyRelease.xcconfig */; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; ASSETCATALOG_COMPILER_APPICON_NAME = "$(ASSET_PREFIX)AppIcon"; @@ -2100,35 +874,119 @@ TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; - name = "Release-skyDev"; + name = "Release-sky"; }; - DE75E23CDCC818E8FFADEB33 /* Debug-xhjPre */ = { + 04B6D8942E6ABBCF00B1BA5B /* Release-sky */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F0DEF3DDACAFA607D45CA0D8 /* xhjPreDebug.xcconfig */; + baseConfigurationReference = E045491EBE71709DCA299FC1 /* skyRelease.xcconfig */; + buildSettings = { + DEVELOPMENT_TEAM = NAQ5PL2DYC; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = "Release-sky"; + }; + 04B6D8952E6ABBCF00B1BA5B /* Release-sky */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 032B4841959E887FE5A71B20 /* Pods-RunnerTests.release-sky.xcconfig */; + buildSettings = { + PRODUCT_NAME = RunnerTests; + }; + name = "Release-sky"; + }; + 04B6D8962E6ABC5B00B1BA5B /* Debug-xhj */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 031263CFBED2AAE746A59A79 /* xhjDebug.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = "$(ASSET_PREFIX)AppIcon"; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + INFOPLIST_FILE = Runner/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + PRODUCT_BUNDLE_IDENTIFIER = com.xhjcn.work.dev; + SDKROOT = iphoneos; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = "Debug-xhj"; + }; + 04B6D8972E6ABC5B00B1BA5B /* Debug-xhj */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 031263CFBED2AAE746A59A79 /* xhjDebug.xcconfig */; buildSettings = { PRODUCT_NAME = "$(TARGET_NAME)"; }; - name = "Debug-xhjPre"; + name = "Debug-xhj"; }; - E5B77D41121FC333E7010EB2 /* Release-xhjDev */ = { + 04B6D8982E6ABC5B00B1BA5B /* Debug-xhj */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 539C2D3FA6928C05F4C984FE /* xhjDevRelease.xcconfig */; + baseConfigurationReference = DB3196B4AD304783DA5CA5AC /* Pods-RunnerTests.debug-xhj.xcconfig */; buildSettings = { - PRODUCT_NAME = "$(TARGET_NAME)"; + PRODUCT_NAME = RunnerTests; }; - name = "Release-xhjDev"; + name = "Debug-xhj"; }; - EE5EDD3D053037D647214FE7 /* Release-skyRelease */ = { + 04B6D8992E6ABCBC00B1BA5B /* Profile-xhj */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C67AF0A7644DDD913055370A /* skyReleaseRelease.xcconfig */; - buildSettings = { - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = "Release-skyRelease"; - }; - F18E19B135D8137F0A697675 /* Release-xhjRelease */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 44C3A9A4A6B7F782019DC9E4 /* xhjReleaseRelease.xcconfig */; + baseConfigurationReference = 1762BB277A17EFCD3D9EB55B /* xhjProfile.xcconfig */; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; ASSETCATALOG_COMPILER_APPICON_NAME = "$(ASSET_PREFIX)AppIcon"; @@ -2186,21 +1044,35 @@ "$(PROJECT_DIR)/Flutter", ); MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_BUNDLE_IDENTIFIER = com.xhjcn.work; + PRODUCT_BUNDLE_IDENTIFIER = com.xhjcn.work.dev; SDKROOT = iphoneos; SUPPORTED_PLATFORMS = iphoneos; - SWIFT_COMPILATION_MODE = wholemodule; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_OPTIMIZATION_LEVEL = "-O"; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; - name = "Release-xhjRelease"; + name = "Profile-xhj"; }; - F461C1A49B04EF794A0E0CD0 /* Release-skyRelease */ = { + 04B6D89A2E6ABCBC00B1BA5B /* Profile-xhj */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C67AF0A7644DDD913055370A /* skyReleaseRelease.xcconfig */; + baseConfigurationReference = 1762BB277A17EFCD3D9EB55B /* xhjProfile.xcconfig */; + buildSettings = { + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = "Profile-xhj"; + }; + 04B6D89B2E6ABCBC00B1BA5B /* Profile-xhj */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 647D041C61EC0D9020C81DD6 /* Pods-RunnerTests.profile-xhj.xcconfig */; + buildSettings = { + PRODUCT_NAME = RunnerTests; + }; + name = "Profile-xhj"; + }; + 04B6D89C2E6ABCE000B1BA5B /* Release-xhj */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F98DF82AFA0A3ACD0765FDAE /* xhjRelease.xcconfig */; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; ASSETCATALOG_COMPILER_APPICON_NAME = "$(ASSET_PREFIX)AppIcon"; @@ -2258,7 +1130,7 @@ "$(PROJECT_DIR)/Flutter", ); MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_BUNDLE_IDENTIFIER = com.skychip.work; + PRODUCT_BUNDLE_IDENTIFIER = com.xhjcn.work.dev; SDKROOT = iphoneos; SUPPORTED_PLATFORMS = iphoneos; SWIFT_COMPILATION_MODE = wholemodule; @@ -2268,15 +1140,23 @@ TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; - name = "Release-skyRelease"; + name = "Release-xhj"; }; - FCF80DE0A2BCC0B82DC967F0 /* Profile-xhjRelease */ = { + 04B6D89D2E6ABCE000B1BA5B /* Release-xhj */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E3D78CE59950994CCAD086B2 /* xhjReleaseProfile.xcconfig */; + baseConfigurationReference = F98DF82AFA0A3ACD0765FDAE /* xhjRelease.xcconfig */; buildSettings = { PRODUCT_NAME = "$(TARGET_NAME)"; }; - name = "Profile-xhjRelease"; + name = "Release-xhj"; + }; + 04B6D89E2E6ABCE000B1BA5B /* Release-xhj */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8D69E0B00EEFAB6ED73331CD /* Pods-RunnerTests.release-xhj.xcconfig */; + buildSettings = { + PRODUCT_NAME = RunnerTests; + }; + name = "Release-xhj"; }; /* End XCBuildConfiguration section */ @@ -2284,77 +1164,41 @@ 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { isa = XCConfigurationList; buildConfigurations = ( - 0487248D2E60463A00F4D195 /* Debug-skyDev */, - 0487248E2E60463A00F4D195 /* Profile-skyDev */, - 0487248F2E60463A00F4D195 /* Release-skyDev */, - 048724902E60463A00F4D195 /* Debug-skyPre */, - 048724912E60463A00F4D195 /* Profile-skyPre */, - 048724922E60463A00F4D195 /* Release-skyPre */, - 048724932E60463A00F4D195 /* Debug-skyRelease */, - 048724942E60463A00F4D195 /* Profile-skyRelease */, - 048724952E60463A00F4D195 /* Release-skyRelease */, - 048724962E60463A00F4D195 /* Debug-xhjDev */, - 048724972E60463A00F4D195 /* Profile-xhjDev */, - 048724982E60463A00F4D195 /* Release-xhjDev */, - 048724992E60463A00F4D195 /* Debug-xhjPre */, - 0487249A2E60463A00F4D195 /* Profile-xhjPre */, - 0487249B2E60463A00F4D195 /* Release-xhjPre */, - 0487249C2E60463A00F4D195 /* Debug-xhjRelease */, - 0487249D2E60463A00F4D195 /* Profile-xhjRelease */, - 0487249E2E60463A00F4D195 /* Release-xhjRelease */, + 04B6D88F2E6AB73000B1BA5B /* Debug-sky */, + 04B6D8922E6ABBAC00B1BA5B /* Profile-sky */, + 04B6D8952E6ABBCF00B1BA5B /* Release-sky */, + 04B6D8982E6ABC5B00B1BA5B /* Debug-xhj */, + 04B6D89B2E6ABCBC00B1BA5B /* Profile-xhj */, + 04B6D89E2E6ABCE000B1BA5B /* Release-xhj */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = "Debug-skyDev"; + defaultConfigurationName = "Debug-sky"; }; 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { isa = XCConfigurationList; buildConfigurations = ( - 1E5874F04DFCB86D9A5B967B /* Debug-skyDev */, - 5763DF6CDD3726E8432EFE44 /* Profile-skyDev */, - D7190C00512EB3710E68AA6B /* Release-skyDev */, - 91BE2D1B03804EA644DF96DB /* Debug-skyPre */, - 4377114462E55AC8F249339C /* Profile-skyPre */, - 0B5ADFDB871D338206AA0B31 /* Release-skyPre */, - 5C31AF279386FEA5C7114EA1 /* Debug-skyRelease */, - 7480C82F5DED9D8898B29DFB /* Profile-skyRelease */, - F461C1A49B04EF794A0E0CD0 /* Release-skyRelease */, - 4977CA54B1A2733747392801 /* Debug-xhjDev */, - 97FC569C845AF4B34E6DDF9A /* Profile-xhjDev */, - 657573D001631CFE7125B731 /* Release-xhjDev */, - 38D44F6C817E7E950124AC86 /* Debug-xhjPre */, - 9EFFDF15EE96EEF55ECED5D1 /* Profile-xhjPre */, - B1802E3C6F5EFE17A6C3EA94 /* Release-xhjPre */, - 7C6A14E7BE6FFD8D31D2B2B2 /* Debug-xhjRelease */, - BE6E758EAB4D237376646C82 /* Profile-xhjRelease */, - F18E19B135D8137F0A697675 /* Release-xhjRelease */, + 04B6D88D2E6AB73000B1BA5B /* Debug-sky */, + 04B6D8902E6ABBAC00B1BA5B /* Profile-sky */, + 04B6D8932E6ABBCF00B1BA5B /* Release-sky */, + 04B6D8962E6ABC5B00B1BA5B /* Debug-xhj */, + 04B6D8992E6ABCBC00B1BA5B /* Profile-xhj */, + 04B6D89C2E6ABCE000B1BA5B /* Release-xhj */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = "Debug-skyDev"; + defaultConfigurationName = "Debug-sky"; }; 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { isa = XCConfigurationList; buildConfigurations = ( - A0ABE4B05B56DE6B3650743A /* Debug-skyDev */, - 27855E74D34704D4902DD915 /* Profile-skyDev */, - C01F159F7C1BA7D64F2B8A45 /* Release-skyDev */, - 770BFC954CC1FBA82928AA90 /* Debug-skyPre */, - 43D0B7AD5F70302D1A2BFE1C /* Profile-skyPre */, - 28F14AA8A7C4A6D8E64E2550 /* Release-skyPre */, - 59389674064F3FF8FD160202 /* Debug-skyRelease */, - BDB82702D99A2F755CCBA34B /* Profile-skyRelease */, - EE5EDD3D053037D647214FE7 /* Release-skyRelease */, - 241C55C606402F4383F5373A /* Debug-xhjDev */, - 6A98BCCFF82BEFF3DA6B6C48 /* Profile-xhjDev */, - E5B77D41121FC333E7010EB2 /* Release-xhjDev */, - DE75E23CDCC818E8FFADEB33 /* Debug-xhjPre */, - 35F20574584CF7FF9C884E06 /* Profile-xhjPre */, - A30147DAA88276B5327DCC33 /* Release-xhjPre */, - B7AE9FE0996D5E49C686855A /* Debug-xhjRelease */, - FCF80DE0A2BCC0B82DC967F0 /* Profile-xhjRelease */, - 697FA0085E5FB99C10C9FD64 /* Release-xhjRelease */, + 04B6D88E2E6AB73000B1BA5B /* Debug-sky */, + 04B6D8912E6ABBAC00B1BA5B /* Profile-sky */, + 04B6D8942E6ABBCF00B1BA5B /* Release-sky */, + 04B6D8972E6ABC5B00B1BA5B /* Debug-xhj */, + 04B6D89A2E6ABCBC00B1BA5B /* Profile-xhj */, + 04B6D89D2E6ABCE000B1BA5B /* Release-xhj */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = "Debug-skyDev"; + defaultConfigurationName = "Debug-sky"; }; /* End XCConfigurationList section */ }; diff --git a/ios/Runner.xcodeproj/xcshareddata/xcschemes/skyDev.xcscheme b/ios/Runner.xcodeproj/xcshareddata/xcschemes/skyDev.xcscheme deleted file mode 100644 index d2b6a69..0000000 --- a/ios/Runner.xcodeproj/xcshareddata/xcschemes/skyDev.xcscheme +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ios/Runner.xcodeproj/xcshareddata/xcschemes/skyPre.xcscheme b/ios/Runner.xcodeproj/xcshareddata/xcschemes/skyPre.xcscheme deleted file mode 100644 index c1da424..0000000 --- a/ios/Runner.xcodeproj/xcshareddata/xcschemes/skyPre.xcscheme +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ios/Runner.xcodeproj/xcshareddata/xcschemes/skyRelease.xcscheme b/ios/Runner.xcodeproj/xcshareddata/xcschemes/skyRelease.xcscheme deleted file mode 100644 index 0fd24d5..0000000 --- a/ios/Runner.xcodeproj/xcshareddata/xcschemes/skyRelease.xcscheme +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ios/Runner.xcodeproj/xcshareddata/xcschemes/xhjDev.xcscheme b/ios/Runner.xcodeproj/xcshareddata/xcschemes/xhjDev.xcscheme deleted file mode 100644 index 9cb9eb0..0000000 --- a/ios/Runner.xcodeproj/xcshareddata/xcschemes/xhjDev.xcscheme +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ios/Runner.xcodeproj/xcshareddata/xcschemes/xhjPre.xcscheme b/ios/Runner.xcodeproj/xcshareddata/xcschemes/xhjPre.xcscheme deleted file mode 100644 index c768397..0000000 --- a/ios/Runner.xcodeproj/xcshareddata/xcschemes/xhjPre.xcscheme +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ios/Runner.xcodeproj/xcshareddata/xcschemes/xhjRelease.xcscheme b/ios/Runner.xcodeproj/xcshareddata/xcschemes/xhjRelease.xcscheme deleted file mode 100644 index 51f611b..0000000 --- a/ios/Runner.xcodeproj/xcshareddata/xcschemes/xhjRelease.xcscheme +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/base/app_initialization.dart b/lib/base/app_initialization.dart index 3a35165..b2c267a 100644 --- a/lib/base/app_initialization.dart +++ b/lib/base/app_initialization.dart @@ -9,6 +9,7 @@ import 'package:starwork_flutter/api/base_api_service.dart'; import 'package:starwork_flutter/api/service/common_api_service.dart'; import 'package:starwork_flutter/api/service/user_api_service.dart'; import 'package:starwork_flutter/common/utils/shared_preferences_utils.dart'; +import 'package:starwork_flutter/flavors.dart'; import 'package:starwork_flutter/views/login/login_controller.dart'; import 'package:starwork_flutter/views/main/main_controller.dart'; @@ -19,7 +20,11 @@ class AppInitialization { setSystemStatusBar(); await SharedPreferencesUtils.init(); initEasyLoading(); - StarCloudSDK.init(clientId: 'clientId', clientSecret: 'clientSecret'); + StarCloudSDK.init( + clientId: F.starCloudClientId, + clientSecret: F.starCloudSecret, + environmentUrl: F.starCloudUrl, + ); Get.put(BaseApiService()); Get.put(CommonApiService(Get.find())); Get.put(UserApiService(Get.find())); diff --git a/lib/flavors.dart b/lib/flavors.dart index 99d932f..17167fd 100644 --- a/lib/flavors.dart +++ b/lib/flavors.dart @@ -1,8 +1,8 @@ enum Flavor { - skyDev, + sky, skyPre, skyRelease, - xhjDev, + xhj, xhjPre, xhjRelease, } @@ -14,13 +14,13 @@ class F { static String get title { switch (appFlavor) { - case Flavor.skyDev: + case Flavor.sky: return '星勤-sky-dev'; case Flavor.skyPre: return '星勤-sky-pre'; case Flavor.skyRelease: return '星勤-sky-release'; - case Flavor.xhjDev: + case Flavor.xhj: return '星勤-xhj-dev'; case Flavor.xhjPre: return '星勤-xhj-pre'; @@ -31,13 +31,13 @@ class F { static String get apiHost { switch (appFlavor) { - case Flavor.skyDev: + case Flavor.sky: return 'http://192.168.1.136/api'; case Flavor.skyPre: return 'https://loacl.work.star-lock.cn/api'; case Flavor.skyRelease: return 'https://loacl.work.star-lock.cn/api'; - case Flavor.xhjDev: + case Flavor.xhj: return 'https://loacl.work.star-lock.cn/api'; case Flavor.xhjPre: return 'https://loacl.work.star-lock.cn/api'; @@ -46,4 +46,53 @@ class F { } } + static String get starCloudClientId { + switch (appFlavor) { + case Flavor.sky: + return '0JLrKMhBSSHH0VlRLcIko5NrESfzDJ8B'; + case Flavor.skyPre: + return '0JLrKMhBSSHH0VlRLcIko5NrESfzDJ8B'; + case Flavor.skyRelease: + return '0JLrKMhBSSHH0VlRLcIko5NrESfzDJ8B'; + case Flavor.xhj: + return '0JLrKMhBSSHH0VlRLcIko5NrESfzDJ8B'; + case Flavor.xhjPre: + return '0JLrKMhBSSHH0VlRLcIko5NrESfzDJ8B'; + case Flavor.xhjRelease: + return '0JLrKMhBSSHH0VlRLcIko5NrESfzDJ8B'; + } + } + + static String get starCloudSecret { + switch (appFlavor) { + case Flavor.sky: + return 'KS8KvZKPKKHgsoDbcfQCCScvyyqeolDt'; + case Flavor.skyPre: + return 'KS8KvZKPKKHgsoDbcfQCCScvyyqeolDt'; + case Flavor.skyRelease: + return 'KS8KvZKPKKHgsoDbcfQCCScvyyqeolDt'; + case Flavor.xhj: + return 'KS8KvZKPKKHgsoDbcfQCCScvyyqeolDt'; + case Flavor.xhjPre: + return 'KS8KvZKPKKHgsoDbcfQCCScvyyqeolDt'; + case Flavor.xhjRelease: + return 'KS8KvZKPKKHgsoDbcfQCCScvyyqeolDt'; + } + } + static String get starCloudUrl { + switch (appFlavor) { + case Flavor.sky: + return 'http://local.cloud.star-lock.cn'; + case Flavor.skyPre: + return 'http://local.cloud.star-lock.cn'; + case Flavor.skyRelease: + return 'http://local.cloud.star-lock.cn'; + case Flavor.xhj: + return 'http://local.cloud.star-lock.cn'; + case Flavor.xhjPre: + return 'http://local.cloud.star-lock.cn'; + case Flavor.xhjRelease: + return 'http://local.cloud.star-lock.cn'; + } + } } diff --git a/pubspec.lock b/pubspec.lock index 22b2e0b..193b029 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -154,50 +154,50 @@ packages: dependency: transitive description: name: flutter_blue_plus - sha256: bfae0d24619940516261045d8b3c74b4c80ca82222426e05ffbf7f3ea9dbfb1a + sha256: "1901a42ade7a8f9793a3655983ef0899565294b12a2a57a2c3e33813930f4a34" url: "https://pub.flutter-io.cn" source: hosted - version: "1.35.5" + version: "1.35.7" flutter_blue_plus_android: dependency: transitive description: name: flutter_blue_plus_android - sha256: "9723dd4ba7dcc3f27f8202e1159a302eb4cdb88ae482bb8e0dd733b82230a258" + sha256: "37d9b6ad243535b4a028d2795c0db82d830f28cd9d0bd37e555a1f987fd7ac4e" url: "https://pub.flutter-io.cn" source: hosted - version: "4.0.5" + version: "5.0.0" flutter_blue_plus_darwin: dependency: transitive description: name: flutter_blue_plus_darwin - sha256: f34123795352a9761e321589aa06356d3b53f007f13f7e23e3c940e733259b2d + sha256: "486d0e1ee317786a61be736ce90cf67a6200a24c8e2439317fe49e54e3a3a767" url: "https://pub.flutter-io.cn" source: hosted - version: "4.0.1" + version: "5.0.0" flutter_blue_plus_linux: dependency: transitive description: name: flutter_blue_plus_linux - sha256: "635443d1d333e3695733fd70e81ee0d87fa41e78aa81844103d2a8a854b0d593" + sha256: "450aa1d5a518dcccdaca1ef4e873e402186aae8fa26e29b5189ae544cbd5e75d" url: "https://pub.flutter-io.cn" source: hosted - version: "3.0.2" + version: "5.0.0" flutter_blue_plus_platform_interface: dependency: transitive description: name: flutter_blue_plus_platform_interface - sha256: a4bb70fa6fd09e0be163b004d773bf19e31104e257a4eb846b67f884ddd87de2 + sha256: "52840efab3c6e5adcd6e5fddeae393d1f7811d14f6361b802e391f8e33a5ee25" url: "https://pub.flutter-io.cn" source: hosted - version: "4.0.2" + version: "5.0.0" flutter_blue_plus_web: dependency: transitive description: name: flutter_blue_plus_web - sha256: "03023c259dbbba1bc5ce0fcd4e88b364f43eec01d45425f393023b9b2722cf4d" + sha256: ccaa61e8694a2547b9949b341f637b318c910cc50975717c24d4340ce3fe4872 url: "https://pub.flutter-io.cn" source: hosted - version: "3.0.1" + version: "5.0.1" flutter_easyloading: dependency: "direct main" description: diff --git a/pubspec.yaml b/pubspec.yaml index 2a75e8f..2c9ac14 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -46,7 +46,7 @@ dev_dependencies: sdk: flutter flutter_lints: ^3.0.0 # 多flavor - flutter_flavorizr: ^2.2.1 + flutter_flavorizr: ^2.3.1 flutter: uses-material-design: true