76 lines
2.4 KiB
Plaintext
76 lines
2.4 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/>
|
||
|
||
<!-- 微信 SDK URL Scheme: wx{AppID}
|
||
微信授权完成后,通过此 URL Scheme 回调到本 App。
|
||
替换 WECHAT_APP_ID 为实际的微信 AppID(wx 开头,16位)。
|
||
CFBundleURLSchemes 中填写 wx{AppID},例如:wx0000000000000000 -->
|
||
<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>
|
||
</array>
|
||
|
||
<!-- 声明可查询微信是否已安装(iOS 9+)
|
||
必须包含 weixin 和 weixinULAPI,否则 isWeChatInstalled 始终返回 false -->
|
||
<key>LSApplicationQueriesSchemes</key>
|
||
<array>
|
||
<string>weixin</string>
|
||
<string>weixinULAPI</string>
|
||
</array>
|
||
</dict>
|
||
</plist>
|