hello folks!
I were stuck with the same issue
to resolve properly without set ENABLE_USER_SCRIPT_SANDBOXING = No,
first you need to comment in the Podfile the command "use_frameworks!", i.e. leaving it out
(in this way you be able to set in Build Phases -> Link Binary with Libraries the libPods-namePod.a instead of namePod.framework)
then run pod install and finally build and run
enjoy!
Post
Replies
Boosts
Views
Activity
hola, por lo que veo tu app tiene funcionalidad limitada o es una web app embebida en un webView por lo que apple te está pidiendo que agregues más funcionalidad en los puntos 4.2.0 y 4.2.2,
para el caso 4.8.0 se refiere a que si usas algún tipo de third-party sign in (por ejemplo Facebook) también deberás incluir el sign in de apple
por acá te dejo el link con los guidelines que revisan cuando se quiere mandar una app a producción
App Store review guidelines
saludos!
Ariel
var body: some View {
var bag = Set()
let publisher = PassthroughSubject<string, never="">(
publisher.sink { (str) in
print(str)
}.store(in:&bag)
return Button("OK") {
publisher.send("Test")
}
}