Need to find build version - buildfire

Reposting again .I am using Buildfire to develop my iOS app. I need to find a build version from react code and also wanted to check if app is currently on Test Flight or App Store

The question is not super clear to me but I'll do my best to answer:
Build version from react code
BuildFire create the builds on their servers so if you're referring to building react native code you have as an app that will not work. If you're referring to building a plugin using BuildFire platform in react, you can start with http://sdk.buildfire.com and https://github.com/BuildFire/reactPluginTemplate.git
App currently on Test Flight or App Store
If you have a paid plan and published your app you should receive an email to confirm whenever it gets published to the App Store and you can also search for it in the App Store. Also if you are the owner of the iOS developer account you can use Test Flight for builds submitted by BuildFire.
If you don't have any paid plans and want to test your app or plugin you can view it in https://apps.apple.com/us/app/buildfire/id1592380675

Related

Generating APK for testing Buildfire application

Is there a way to generate APK file for buildfire application that is under development so that QA's can test it?
I tried looking at the documentation but did not find anything related to it. Only option I saw was to publish app to Google Play Store.
You can test locally with BuildFire pluginTester. you can check: https://sdk.buildfire.com/docs/how-to-test-your-plugin-locally
For testing on real Android builds or iOS TestFlight builds, you can reach out to BuildFire for custom builds as long as you are on a non trial app and they will be able to provide you with these.
You can always preview your app on BuildFire previewer by following instructions when clicking the "Preview" button in the control panel as shown below. However, features that require special setup such as (Push Notifications, In App Purchase) or plugins that require special features to be added will not work.

Xamarin app can't run in release mode on iPhone (This app cannot be installed becaue its integrity could not be verified)

This is a question that has been asked several times, but no solution has worked for me.
I finished coding a Xamarin Forms app and now, I want to release it. I signed the app with a new certificate and an Adhoc provisioning profile. Everything signs well.
But when I distribute the IPA, after installing the app, iOS shows this message:
"This app cannot be installed becaue its integrity could not be
verified"
I chosed Ad-hoc as provisioning profile config.
This app has the same namespace and bundle id as its preceding app found in the app store already. I built a new version, within a new solution and created certificates with the same bundle id.
The device on which I am trying to install it is an iPhone XR, that I use to test the live version of the app and the one in development. When I run the app in debug on the phone, nothing wrong happens. But signing and distributing causes the app to not run.
After several hours of debugging, I found out that my bundle display name for the new version of the app was written in lower case, whereas the bundle display name of the former app was camel case. When I changed the new app's bundle display name to camel case too, everything went smoothly.
This is so weird.

Publish Windows service in Microsoft store with NodeJS or Electron

I'm looking for a the golden advice.
I've created an app that listens to websockets over a certain port and then sends commands to a native module (wrapped by NodeJS). now all this is done in NodeJS app. and packed in exe file (with two extra files for the native module ".dll and .napi")
now I want two things:
Run this app as a windows service in the background.
Package it in an installer that should stop the service (if exists), install the new update, then re-run the service. this app will be published in Microsoft store as appx.
I'm new to all of this so I feel lost while trying to know which is the best approach with my little knowledge.
I'm a bit confused between NodeJS and ElectronJS, some people say electron is not the best choice for services, but electron-builder is a great tool for packaging.
Conclusion: I want to publish my app to Microsoft store (already bought a developer account), and to run it as a service (no GUI). and the code is written in JS (node or electron)
Thanks in advance

Does STRAPI helpful to develop REST api to connect Flutter app easily and cost effectively

These days, I'm developing a Car Service application using Flutter. I already developed my flutter app using mock data with json files. This is my flutter app
https://play.google.com/store/apps/details?id=com.clivekumara.srilankacarwashfinder
Now I want to develop own rest api. Basically below requirements should be handled in the rest api.
1. Image Uploding and store images
2. Mange authentications
3. Other entity crud operations
4. Location base functionalities.
For fullfill above requirements I research a backend techologies. This api sholud be faster and easy to implement. Also deployment cost sholud be less.
For that I choose StrApi CMS platform with Mongodb to develop this requirement.
Can you give me some idea that choson technologies are compatible with the requirement. What are the cost effective deployment technologies (Hosting space, Database server etc...) compatibility with this Strapi and mongodb .
I use strapi for building static websites. Its pretty easy to use and build fast API. I also saw some Flutter apps built with strapi backend and they work flawlessly. It seems to be a good choice but might be challenging sometimes specially if you are building a very complex app.
You can use Heroku for strapi hosting. They have a free plan that will be enough for development purpose. Note that Heroku does not give you space for your uploads like images. You will still need to buy some space on S3 or Digitalcean spaces or other services.
DigitalOcean has a Oneclick installation of Strapi. It costs $10/month and if you add a $5/month space to your plan then you have $15/month to start. For database Strapi comes with SQL Lite by default but you should use Postgres or MangoDB to build your project for production.

how can i track my mobile app user when the app is killed

i want to implement tracking in my app but i am confused on how to get the location from the app if the app is not opened and send it to the server i tried socket , GPS-tracking but it did not work.
can any one guide me to how this is implemented and any resources or libraries to use ?
For Android projects React Native includes headless JS that does just what you are asking.
iOS is more complicated but the best solution I've found is a package called React Native Background Geolocation
Unfortunately this is not possible in a PWA without a plugin due to W3C's and Jake Archibald's refusal to implement the TravelManager detailed here
If the TravelManager were to be implemented a ServiceWorker intance would be automatically spun up on change of location in order to foreground your Web App or instantiate a new instance.

Resources