Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to develop Android Native video chat app using WebRTC(Not browser).
Main feature is Android user can able to call Desktop web browser.
Any way?(please without third party API)
It's possible using javascript (intel xdk) hybrid app
link:https://crosswalk-project.org/
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 months ago.
Improve this question
I am developing a E-commerce website and application and i want same backend for both app and web how can i do this in laravel?
You do it by creating API routes and having your website & apps use them.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I made a simple browser app using Webview,
but Existing android Browser apps like Chrome, Microsoft Edge, Firefox.
How are these apps made?
Simply same using Webview??
Yes basically they are WebViews. And web engine it self for webView is used default one installed on device, it also can be changed in phone settings.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I want to make a chatting app with media sharing how can I do that in Android Studio. Do I need socket programming or what else, please help.
Just go through Firebase codelab, the first android app they teach there is a chat app with media sharing ability.
https://codelabs.developers.google.com/codelabs/firebase-android/
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
basic android app that connects with Instagram and will allow people to login to their account and view their feed through my app, how is this possible? i know i need instagram api but what need i should work with this api
Your APP would need to interface with Instagram using Instagram's API.
http://instagram.com/developer/
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
Years ago, I built a web forms site that uses ASP.Net Forms Authentication. Now, we need to build a native mobile app (IOS/Android) that authenticates users with the same credentials they set on on the web.
Is this possible?
Sure but you most likely will want to build a RestFul service to do it. On iOS I would also recommend using AFNetworking or RestKit.