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
This Question is being Asked Many times on StackOverFlow but in hope of Getting Some Updated answer and Good News Here it Comes again...
I have Created an application GUI in Objective C and now i want to implement my Networking Part in C++ so that i can Use it for Android too.
So is there any C++ Networking Library out there which i can Use for My Purpose or i have to do this in objective C for ios and in java for Android....
Poco maybe a choice.
Its networking module have TCP, UDP, HTTP and HTTPS support, both in Android and iOS.
I'd recommend Qt, although it is a little big to use only for its network module. But still, you could move your UI and other code to Qt as well, and get a fully portable application. iOS is currently not officially supported, but official support preview is scheduled for version 5.1 which is due for release at the end of this month. The same goes for Android support as well.
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 1 year ago.
Improve this question
I'm searching for tools that would allow me to index and navigate within AOSP source tree a little bit easier.
My team works mostly at the lower level (so C and C++), but we interface with Java quite a bit. Currently we use:
ack-grep,
ctags,
cscope.
Since we're building a whole platform, we're not limited to just our code, but sometimes also need to understand better what's happening inside Android.
I currently make an attempt to use OpenGrok -- indexing is far from being done and the log is already swollen from git warnings.
The tools we currently use are hardly a convenient way to navigate the code. I would like to reach out for Android hackers wisdom - how do you navigate the code?
For the Java part Android Code Search is quite a blast. Unfortunately, I think it's "online-only" And also, for the low-level (C/C++) stuff things need to evolve a bit.
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
What is the best option today to do C++ software development on an Android platform? I need C++11, Boost, SQLite, vi/Emacs/whatever, ... and Android is the development platform, not necessarily the target.
Are the development tools on Google Play complete? Do they allow to develop a full scale application?
Are there any advantages in using a Linux VM on Android for this purpose?
You can use NDK with your android app development to embed a C++ code, which will improve the performance considering you are doing much complicated task and if you need native language like C++. But now android runtime [ART/Dalvik] is much better and all the apps are targeted to run on it. You can do a lot of work only in java itself.
And there is no VM available yet. So best way to go with this is use NDK.
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
This might sound like a duplicate question but trust me its not.
I have an Android app. It contains WebView to display webpages. Now I am planning to go live with the app on ios too. Now having two different codes and maintaining them is a difficult task.
Is there a way I can develop app in both the platforms with minimum maintenance issues. With minimum maintenance I mean more reusable code that can be use on both the platforms.
I have heard that it can be done using Chromium Project but am unable to find supporting docs for the same on internet.
Any suggestions?? or reference materials??
For what I know there is no way you could use your Java code and the XML files (including your WebView) in IOS application. the language/platform are different.
What you could do is to develop a web application that looks as a mobile application for example using JQueryMobile and the export it using the already suggested PhoneGap framework to any platform you would like.
You should try one of the several frameworks out there, being PhoneGap (http://phonegap.com) an interesting option.
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'm creating an Android app which must do some web surfing in the background in order to provide a service to the user.
The site I must connect to has no API, it only provides standard HTTP access, with extensive cookie usage but (luckily for me) not much Javascript code.
I wonder if there is a library which behaves like python mechanize for Android, or if it's possible to use mechanize itself in the Android app.
I'm not 100% sure it'll work in Android, but being Java-based, HtmlUnit is probably worth a look.
Mechanize has been ported to Java, and does run in Android:
http://gistlabs.com/software/mechanize-for-java/
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'm interested in developing an android app that makes use of an OpenCV android port at http://code.google.com/p/android-opencv/. Particularly, I want to use SURF features which comes embedded in the OpenCV framework but I'm not sure if then I will be able to sell this app.
Anyway, is there any non-free app making use of any of the OpenCV android ports?
SURF is a patented algorithm. You need permissions to use it in commercial applications. SURF comes with OpenCV because there its being used for "academic" or "research" purposes, without any commercialization involved.
Read the license files of the particular port you are using.
The two different ports I googled and looked at in the past two minutes seem quite clear.