How implement Live tracking in my flutter app? - flutter

I would like implement a live tracking in the background—even if app wasn’t the currently active app?

Check this awesome blog on how to fetch location when the app is in the background.
https://medium.com/#pierre.sabot/how-to-fetch-user-location-in-background-with-flutter-e3494021bdf5

Related

is it possible to make an application for video calls in Ionic?

I need to write an application with video chats (1:1), and i know Angular. There are tons of SDKs for Angular(or web) to handle video calls(like e.g. twilio.com, agora.io?). But my client need mobile app. It's possible to write native app in Ionic with video calls support? However, do I have to use something more professional like flutter to achieve this?
Is there any ready SDK to handle this in Ionic?
I am looking, I am looking for and I cannot find anything. And I have to make quick decisions in part.
Please help me :)
Yes.
You can use the camera and the microphone with Ionic (in native or pwa mode).
Ionic fully supports Angular and Angular components.
I recommend you the use of notifications like Google FCM to notify the caller.
You can trigger an action directly from the notification (app in background or in app which is not the same).

Do i need to write extra code for newly added youtube video in iphone?

I am new in iPhone development. I want to create an app which will show youtube videos those i will upload in my account.
I will have admin panel in my app, from where i could control my videos. Suppose i developed the app and launched on app world.
Now after some time I want to add new videos to my account , should i need to write extra code or it will reflect automatically via used link in iphone app?
Speaking generally, you could have the application find your newest videos released in Youtube and display them in the app. Therefore, you would not need to have any more code.
There would be no code for any video within your app. Instead, have your app get the list of the videos from Youtube and play them.

Turn off app in IOS through PhoneGap API

I have a html5 app for iphone using phonegap. I check for internet connection for the necessary first update, how do I turn of the app if the user does not have an internet connection? Thanks in advance. As I said I have full access to phonegap api!
if you want to deploy your app to the app store, you can not update the app under the covers. You have to submita new version to apple and let the users update your app.
If you just want to know wether your device is online you can use the Phonegap online offline events. See: http://docs.phonegap.com/en/1.4.1/phonegap_events_events.md.html#online and http://docs.phonegap.com/en/1.4.1/phonegap_events_events.md.html#offline

is it possible to continuously track gps location in phonegap app(iphone) in background(means when app is not running)

I am working on an iphone app which needs to pop up a notification when the user reaches some particular place. I am developing the app in phonegap. A function is available in phonegap to track gps location continuously i.e. "geolocation.watchPosition", but I want to know: will the function keep on tracking the location even if the app is not running(exited state)?
I recently came to know that for the desired functionality I have to create a phonegap plug in and embed it to the project. This worked for me.
you can do it if your app is runing in background but its not possible if the user stops the applicationcheck this post Is it possible to run a background process on the iPhone using private APIs?

wallpaper service in iPhone

i want some information about iPhone api. basically i'm a android developer .now i want to port my android application to iPhone. my application is live wallpaper. is there any way to apply live wallpaper service in iPhone.if possible means?
1.how to get touch event in home screen.
2.what are api i need to fallow in iPhone.can i able to use any of the iPhone background service for that.(wallpaper service)
3.if i done like this app store will accept my app?.
guide me thank you.......
You can save images to Library and give instructions to user on how to set it as wallpaper. You cannot set a wallpaper programmatically. Your app will probably be rejected if you use any methods from private API.