app scaffold

This commit is contained in:
Guangfei.Zhao
2026-08-17 15:29:55 +08:00
commit 681688dfae
301 changed files with 18414 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>App</string>
<key>CFBundleIdentifier</key>
<string>io.flutter.flutter.app</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>App</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
</dict>
</plist>
+1
View File
@@ -0,0 +1 @@
#include "Generated.xcconfig"
+10
View File
@@ -0,0 +1,10 @@
// dev 环境。由 Xcode 里名为 "Debug-dev" / "Release-dev" / "Profile-dev"
// 的 Build Configuration include 进来(手工步骤见 ios/FLAVORS.md)。
//
// 这里只放**环境差异**,公共配置留在 Generated.xcconfig / Debug.xcconfig。
BUNDLE_ID_SUFFIX=.dev
APP_DISPLAY_NAME=马店(开发)
// 包名不覆盖、只加后缀——和 Android 的 applicationIdSuffix 保持同一套规则。
PRODUCT_BUNDLE_IDENTIFIER=com.conti.retail$(BUNDLE_ID_SUFFIX)
+10
View File
@@ -0,0 +1,10 @@
// prod 环境。由 Xcode 里名为 "Debug-prod" / "Release-prod" / "Profile-prod"
// 的 Build Configuration include 进来(手工步骤见 ios/FLAVORS.md)。
//
// 这里只放**环境差异**,公共配置留在 Generated.xcconfig / Debug.xcconfig。
BUNDLE_ID_SUFFIX=
APP_DISPLAY_NAME=大陆马门店
// 包名不覆盖、只加后缀——和 Android 的 applicationIdSuffix 保持同一套规则。
PRODUCT_BUNDLE_IDENTIFIER=com.conti.retail$(BUNDLE_ID_SUFFIX)
+1
View File
@@ -0,0 +1 @@
#include "Generated.xcconfig"
+10
View File
@@ -0,0 +1,10 @@
// uat 环境。由 Xcode 里名为 "Debug-uat" / "Release-uat" / "Profile-uat"
// 的 Build Configuration include 进来(手工步骤见 ios/FLAVORS.md)。
//
// 这里只放**环境差异**,公共配置留在 Generated.xcconfig / Debug.xcconfig。
BUNDLE_ID_SUFFIX=.uat
APP_DISPLAY_NAME=马店(测试)
// 包名不覆盖、只加后缀——和 Android 的 applicationIdSuffix 保持同一套规则。
PRODUCT_BUNDLE_IDENTIFIER=com.conti.retail$(BUNDLE_ID_SUFFIX)