I am specifically trying to add app groups, I have configured the capabilities for the selected bundle identifier but still the capabilities window is showing up blank.
Related
I am specifically trying to add app groups, I have configured the capabilities for the selected bundle identifier but still the capabilities window is showing up blank.
I am working on a project that requires a user iOS app and a creator iOS app, such as how Uber has a driver iOS app and a customer iOS app.
Can I use the same Firebase project and Firestore database for both?
How would I set this up with the GoogleService-Info.plist? as both apps will have a different Bundle Identifier.
Thanks
On your project console, go to settings and scroll down. you should see the button to download the GoogleService-Info.plist of the iOS app you already have. If you click on the "Add app" button you can add another iOS app for the same project, which will have its won .plist file.
I want to build app settings preferences inside my app which should look just like default settings preferences in an iPhone.
Can we display preferences inside the app using default iOS settings bundle?
Is there any default framework to do so?
How does iOS settings bundle work?
According to this: https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/UserDefaults/Preferences/Preferences.html, app have two options for presenting preferences:
1) Display preferences inside the app.
2) Use a Settings bundle to manage preferences from the Settings app.
can iOS settings bundle work for first option?
The settings bundle is used to display customised settings parameters (eg:like app endpoint) in settings screen entry respective to your app. You wont be able to use in anyway the UI screens of settings app inside your own application.
Is there any steps to create settings entry without settings bundle.
When I searched how to add my app to settings app in ios, i found that we need to add settings bundle. I also found some project that get added to settings app without settings bundle. how it is done?
If we register for push or VOIP notification, do the settings entry automatically get created?
Thank you,
Yes your app automatically will display in setting app for different permission like camara,photolibrary,location,microphone etc. Whatever functionality you will used your app add that category in setting app.
So, if you implement VOIP or push notification(for example successfully register for notification) then setting app will show settings about that also.
Using Apple's Settings bundle in a project, is it possible to expose certain settings to the user only if another setting condition is met?
E.g I have a toggle switch, and if the user toggles the selection to False in the Settings application, I want to show a text box that they can fill in. If the toggle is true, I want to hide the text box.
Any help or pointers to documentation that explain this would be great.
You can find step by step instructions here: Adding a settings bundle to an iPhone App.
Edit:
I did my research and I think you cannot do this in an App Store approved app, because to reach this thing you have to change the settings.bundle file inside the application's bundle, which is not allowed in App Store approved apps.