Post

Replies

Boosts

Views

Activity

App Store validation : same app Freemium + Paid (without in app)
Hello everyone. We have so much trouble with Apple's validation process, although we do our best to review our copy the process is stuck. We are putting a lot of good will but we are getting rejected without any help on how to solve these problems to finally publish our app. Our app uses a Freemium model, that meens that it offers all the capabilities once the purchase IN APP is done. Companies and schools have contacted us because they would like to acquire the app but the massive deployment (in organizations) prohibits in-app purchase. So, it is NOT possible for schools and companies (with MDM fleet deployment) to subscribe to IN-APP purchases and use our product. Therefore, the only way to offer Photon to schools or businesses is to deploy a full version (without IN APP purchase) on the app store in an unregistered way, as explained in this video: https://developer.apple.com/videos/play/tech-talks/10892 We did it but the App Store validation process reject the app for "spam". We followed the video to create this unlisted version dedicated to these uses. If this is not the right way to do it, do you have any idea to solve this situation ? Thank you very much for your help Clément
0
0
754
Dec ’22
ActionSheet & StackNavigationViewStyle constraint iPad bug
Hi everybody !When I have a NavigationView and I want to make appear the actionSheet popover on the navigationBarItem button it works.But when I add a StackNavigationViewStyle it doesn't work anymore. This NavigationViewStyle break the actionSheet and it will not appear when I tap "+" button. I think there is a constraint problem in SwiftUI with ActionSheet and StackNavigationViewStyle in the NavigationView.navigationViewStyle(StackNavigationViewStyle())This is the complete codestruct ContentView: View { @State private var showNewControlActionSheet = false var body: some View { NavigationView { Text("test") .navigationBarTitle("Test") .navigationBarItems(trailing: HStack() { Button(action: { self.showNewControlActionSheet = true }) { HStack { Image(systemName: "plus") .padding(10) .clipShape(Circle()) } } .actionSheet(isPresented: $showNewControlActionSheet) { ActionSheet(title: Text("Change background"), message: Text("Select a new color"), buttons: [ .default(Text("Red")) { }, .default(Text("Green")) { }, .default(Text("Blue")) { }, .cancel() ]) } }) }.navigationViewStyle(StackNavigationViewStyle()) } }It works very well on iPhone but NOT on iPAD
7
0
4.2k
Dec ’22