Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I want to develop a real-time application over the internet. This means I need a fast communication between clients (Android).
Which protocol should I use? Should I use a base server to support the communication between the single clients?
And please don't forget that everything should work over the internet (NOT in the same LAN).
Can you recommend some Java Frameworks?
you can use Firebase Cloud Message for android, check this page:
https://firebase.google.com/docs/
and this link:
https://firebase.google.com/docs/samples/
you should be interested in realtime database
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I need to intercept http calls executed by a browser on an android device to automatically modify the header of the request and add javascript an css.
On a browser running on a desktop this is usually possible implementing a plugin. Unfortunately browsers on androids do not have plugin mechanism.
What I was thinking to do is to configure the browser to access a local proxy server running on the device itself.
Do you think that this is possible?
If you think that this is off topic, could you please add a comment and tell me why?
Thanks
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
How do I query a wordpress.com site for information to build the android app. I am new to this. Wordpress.org suggests using JSON but that is not available on wordpress.com. Any links to tutorials would also be appreciated.
Jetpack will allow you to authorize applications and services to securely connect to your blog and allow them to use your content in new ways and offer you new functionality.
Developers can use WordPress.com’s OAuth2 authentication system and WordPress.com REST API to manage and access your site’s content.
You can also learn more about the API by visiting the REST API documentation.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am a beginner in android development. I want to create a SAML sample in Android. I went to read the basic specification of saml v2.0 and some concepts on single sign on.
I could not find any site how to implement saml and sso for android or any other domain.
I really need big help on knowing the Saml, Single sign on, Service Provider, Indentity Provider(Idp) and OAuth.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
Anyone know of an example that demonstrates how to connect to a service using SAP RFC in Android?
Native RFC most certainly won't be possible because you'd need a closed-source native library for this that is not available on Android platforms. You'll have to use the web service wrappers.
You can create a web service and call that web service through SOAP.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I am developing an android application. I basically want to read the USSD responses into the application. Is there any API to do so? How to fetch these messages into application?
There is no API for USSD request yet. The ticket to create this API is not closed. But the community has found several hacks how to add this feature to their applications.
The first approach is to parse a log. Here is where you can find a class that do this. And here is a test application that uses this class.
Also there is a second approach.
Good luck!