我发现了一些小片段,以了解如何通过TestFlight安装应用程序。
在这里,appStoreReceiptURL
是一个实例属性,我们可以从主捆绑包中找到它。
func isTestFlight() -> Bool {
guard let appStoreReceiptURL = Bundle.main.appStoreReceiptURL else {
return false
}
return appStoreReceiptURL.lastPathComponent == "sandboxReceipt"
}