90 lines
2.7 KiB
Plaintext
90 lines
2.7 KiB
Plaintext
<?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>$(DEVELOPMENT_LANGUAGE)</string>
|
||
<key>CFBundleDisplayName</key>
|
||
<string>Genex Consumer</string>
|
||
<key>CFBundleExecutable</key>
|
||
<string>$(EXECUTABLE_NAME)</string>
|
||
<key>CFBundleIdentifier</key>
|
||
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
||
<key>CFBundleInfoDictionaryVersion</key>
|
||
<string>6.0</string>
|
||
<key>CFBundleName</key>
|
||
<string>genex_consumer</string>
|
||
<key>CFBundlePackageType</key>
|
||
<string>APPL</string>
|
||
<key>CFBundleShortVersionString</key>
|
||
<string>$(FLUTTER_BUILD_NAME)</string>
|
||
<key>CFBundleSignature</key>
|
||
<string>????</string>
|
||
<key>CFBundleVersion</key>
|
||
<string>$(FLUTTER_BUILD_NUMBER)</string>
|
||
<key>LSRequiresIPhoneOS</key>
|
||
<true/>
|
||
<key>UILaunchStoryboardName</key>
|
||
<string>LaunchScreen</string>
|
||
<key>UIMainStoryboardFile</key>
|
||
<string>Main</string>
|
||
<key>UISupportedInterfaceOrientations</key>
|
||
<array>
|
||
<string>UIInterfaceOrientationPortrait</string>
|
||
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||
<string>UIInterfaceOrientationLandscapeRight</string>
|
||
</array>
|
||
<key>UISupportedInterfaceOrientations~ipad</key>
|
||
<array>
|
||
<string>UIInterfaceOrientationPortrait</string>
|
||
<string>UIInterfaceOrientationPortraitUpsideDown</string>
|
||
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||
<string>UIInterfaceOrientationLandscapeRight</string>
|
||
</array>
|
||
<key>CADisableMinimumFrameDurationOnPhone</key>
|
||
<true/>
|
||
<key>UIApplicationSupportsIndirectInputEvents</key>
|
||
<true/>
|
||
|
||
<!-- URL Schemes — 各第三方 SDK 回调路径
|
||
微信: wx{AppID} → fluwx 回调
|
||
支付宝: alipay{AppID} → tobias 回调 -->
|
||
<key>CFBundleURLTypes</key>
|
||
<array>
|
||
<dict>
|
||
<key>CFBundleTypeRole</key>
|
||
<string>Editor</string>
|
||
<key>CFBundleURLName</key>
|
||
<string>weixin</string>
|
||
<key>CFBundleURLSchemes</key>
|
||
<array>
|
||
<string>wx$(WECHAT_APP_ID)</string>
|
||
</array>
|
||
</dict>
|
||
<dict>
|
||
<key>CFBundleTypeRole</key>
|
||
<string>Editor</string>
|
||
<key>CFBundleURLName</key>
|
||
<string>alipay</string>
|
||
<key>CFBundleURLSchemes</key>
|
||
<array>
|
||
<!-- 支付宝 URL Scheme: alipay{数字AppID},如 alipay2021003189xxxxxx
|
||
替换 ALIPAY_APP_ID 为实际的支付宝 AppID(16位数字) -->
|
||
<string>alipay$(ALIPAY_APP_ID)</string>
|
||
</array>
|
||
</dict>
|
||
</array>
|
||
|
||
<!-- 声明可查询已安装 App(iOS 9+)
|
||
weixin/weixinULAPI: 微信
|
||
alipay/alipays: 支付宝 -->
|
||
<key>LSApplicationQueriesSchemes</key>
|
||
<array>
|
||
<string>weixin</string>
|
||
<string>weixinULAPI</string>
|
||
<string>alipay</string>
|
||
<string>alipays</string>
|
||
</array>
|
||
</dict>
|
||
</plist>
|