代码拉取完成,页面将自动刷新
import ProjectDescription
let settings = Settings(
base: [
"ENABLE_BITCODE": SettingValue.string("NO"),
"CURRENT_PROJECT_VERSION": SettingValue.string(""),
"MARKETING_VERSION": SettingValue.string("0.1"),
],
configurations: [
CustomConfiguration.debug(
name: "debug",
settings: ["CODE_SIGN_ENTITLEMENTS": SettingValue.string("./Entitlements/debug.entitlements")],
xcconfig: "./Configurations/Debug.xcconfig"
),
CustomConfiguration.release(
name: "release",
settings: ["CODE_SIGN_ENTITLEMENTS": SettingValue.string("./Entitlements/release.entitlements")],
xcconfig: "./Configurations/Release.xcconfig"
),
]
)
let project = Project(
name: "Soapbox",
targets: [
Target(
name: "Soapbox",
platform: .iOS,
product: .app,
bundleId: "$(PRODUCT_BUNDLE_IDENTIFIER)",
deploymentTarget: .iOS(targetVersion: "13.0", devices: .iphone),
infoPlist: "Info.plist",
sources: ["Sources/**"],
resources: ["Resources/**", "Configurations/*", "Entitlements/*", "Assets.xcassets", "Localization/**/*.strings"],
dependencies: [
.cocoapods(path: "."),
.xcFramework(path: "./WebRTC.xcframework"),
],
settings: settings
),
Target(
name: "SoapboxTests",
platform: .iOS,
product: .unitTests,
bundleId: "app.social.soapboxTests",
infoPlist: "Tests.plist",
sources: "Tests/**",
dependencies: [
.target(name: "Soapbox"),
]
),
Target(
name: "SoapboxUITests",
platform: .iOS,
product: .uiTests,
bundleId: "app.social.soapboxUITests",
infoPlist: "UITests.plist",
sources: "UITests/**",
dependencies: [
.target(name: "Soapbox"),
]
),
]
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。