This commit is contained in:
rustdesk 2023-04-22 13:21:06 +08:00
parent a5e948a7d6
commit 7cfcedaa5c
5 changed files with 23 additions and 6 deletions

View File

@ -363,7 +363,7 @@
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
DEVELOPMENT_TEAM = "";
DEVELOPMENT_TEAM = HZF9JMC8YN;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
@ -560,7 +560,7 @@
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
DEVELOPMENT_TEAM = "";
DEVELOPMENT_TEAM = HZF9JMC8YN;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
@ -649,7 +649,7 @@
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
DEVELOPMENT_TEAM = "";
DEVELOPMENT_TEAM = HZF9JMC8YN;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (

View File

@ -6,12 +6,14 @@
<true/>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
<string>RustDesk</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<string>6.0</string>
<key>CFBundleName</key>
<string>RustDesk</string>
<key>CFBundlePackageType</key>

View File

@ -0,0 +1,15 @@
<?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>method</key>
<string>app-store</string>
<key>teamID</key>
<string>HZF9JMC8YN</string>
<key>provisioningProfiles</key>
<dict>
<key>com.carriez.flutterHbb</key>
<string>rustdesk-ios-prod-app-store</string>
</dict>
</dict>
</plist>

View File

@ -1,2 +1,2 @@
#!/usr/bin/env bash
cargo build --release --target aarch64-apple-ios
cargo build --features flutter --release --target aarch64-apple-ios --lib

View File

@ -1,2 +1,2 @@
#!/usr/bin/env bash
cargo build --release --target x86_64-apple-ios
cargo build --features flutter --release --target x86_64-apple-ios --lib