When making one social media project on both Xcode and android studio platforms, how to connect both of them with firebase to make connection between the users of iPhone and android devices.
You should follow the setup guide for both Android and iOS
Once you've set them up on their respective IDE's and loaded them on your client they'll both connect to the same default databas thereby sharing the data.
Thanks for everyone, but I found the answer in firebase.
The answer is to make a project with firebase and in the project create an iOS app and an android app in the same project, then both of them will use the same database.
Related
I want to build a very simple gallery like app (which uses the Telegram bot API to fetch images from certain telegram channel). I want to have this app for both Android and iOS device. I guess either progressive web app or flutter could be used to achieve this. I have developed native android apps before, and wish to learn PWA or flutter along with this project.
So my question is, can I deploy this app to my iOS device without enrolling in the Apple developer program? Since this is only for personal use and I do not wish to publish this app on any app store. Also, do I need to have a Mac with Xcode to do this?!
Thanks in advance!
For developing a Progressive Web App for iOS, you won't need Xcode and a Macbook since it is basically still a website with enhancements. However, bear in mind that PWA support on iOS is very limited. Android has much better PWA support.
This article gives an overview of what is currently possible
I was trying the DJI sdk Sample tutorials and wanted to use the telemetry data for my server. I wanted to know if there is any way in which I can get the Telemetry Data from the existing iOS DJI Go app to my personal iOS app running in the background using the sdk.
DJI has UXSDKs that will be easier for you to interface with and collect data from. Here are the links:
iOS UI Library
Github iOS UXSDK
I am fairly certain that you cannot access data from 1 app (DJI GO) by another app (your app).
You can create your own app to access the information but that would result in you duplicating the DJI GO app functionality. (I think that is what Muhammad is suggesting above).
I want to open or call my iOS SDK framework file in the telerick hybrid coredova application. Share if you have any ideas.
It is not possible to open a framework directly in any of the AppBuilder clients. However, you can use a custom (or third-party) iOS framework in your app by creating a Cordova plugin. To do so, you would require knowledge in native iOS development. This article contains additional information on the subject.
I added an app in MobileCore dashboard, but I've not able to find where to download the SDK for iOS to integrate with my app.
I tried to search through Google but still cannot find a link to download the MobileCore.framework. Do they stop publishing the SDK?
Contacted to one of the managers. She told me that they'd stopped support new apps, since they're moving to Supersonic platform soon.
I have an existing iOS app that I'd like to start adding some React Native screens to. The app uses Firebase with persistence enabled so that it works offline. Is there a way to also use Firebase directly within React Native while maintaining offline functionality?
If the answer is "Yes", do iOS and React Native share the same local data store? This would be important, so that offline data changes on iOS screens would reflect data changes made from React Native screens and vice versa.
Thanks for sharing your insight on this!
Alternatively, you can use Firestack, which is a native library that works with both iOS and Android on react native.
Offline support is enabled along with storage, the real-time database, authentication, remote configuration (in development), etc.
(disclosure: I am one of the primary authors of Firestack)
Firebase's offline disk persistence is currently only available in its native iOS and Android SDKs. It is not yet available for JavaScript SDK.
The javascript SDK will persist new write requests when you are offline and will sync with the server once you go online. But if you were hoping to show a list with data that was previously fetched from firebase, then you are out of luck with Javascript.
One of the answers mentions Firestack, but it is no longer supported.
On a project I just ended up installing this package https://github.com/invertase/react-native-firebase. It is a bridge to the native ios & Android SDKs for firebase and if you use it you can also use persistence.
Tested and verified. All works great! :)
UPDATE:
It is now possible https://firebase.google.com/docs/database/web/offline-capabilities
OBSOLETE:
As of Firebase JavaScript SDK 3.1.0, offline persistance is still unavailable. It's recommended you use React Native's AsyncStorage.
All of the answers above are out of date!
As of JULY 2020 offline persistence is supported out of the box when you use react-native-firebase.
Read more here: https://rnfirebase.io/firestore/usage#offline-capabilities