As of iOS 13.3.1, apps installed with free developer accounts that contain embedded frameworks fail to launch. To work around this, we now link all dependencies via Cocoapods as static libraries.
13 lines
357 B
Plaintext
Executable File
13 lines
357 B
Plaintext
Executable File
framework module GoogleSignIn {
|
|
umbrella header "GoogleSignIn.h"
|
|
export *
|
|
module * { export *}
|
|
link framework "CoreGraphics"
|
|
link framework "CoreText"
|
|
link framework "Foundation"
|
|
link framework "LocalAuthentication"
|
|
link framework "SafariServices"
|
|
link framework "Security"
|
|
link framework "SystemConfiguration"
|
|
link framework "UIKit"}
|