Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
What are the prerequisites for android platform development ?
Is it linux kernel , linux administration or just familiarity of linux system ?
Based on your last comment being about how you want to contribute to AOSP, I would take a look at the Contributing to AOSP page.
All your contributions go through gerrit so reading up about that would also be useful.
Bugs and issues for AOSP can range in a variety of languages and forms, and they can use anyone with proficiency with c, java, and make files to name a few. Any knowledge on those subjects can be helpful.
You should also look into the Style Guidelines for contributing to AOSP or most of your patches will be rejected, they are very strict.
You need to Learn Basic Object Oriented Programming, Java, other then this you should be familiar with Eclipse or ADT plugin as the Integrated Development Environment ( IDE) to work on Android Platform.
Linux is not required for New learners (Beginner).
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I need to practice android and check if my codes are correct or not. Is there any site like w3 School which provides an online environment to practice android?
There are no such online android tools till now. however there are lot of online tutorials available. You can practice with your PC or MAC or Linux system. There are several IDEs that supports developing android applications. My opinion is Eclipse. Which provides full support for android.
You can Download Eclipse from here and Android plugin for Eclipse from here.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am new to both android development as well as openCV. Meaning, I want to learn them... specifically I want to learn OpenCV for android..
Is it necessary to understand basic OpenCV first? What will be a proper way to learn? Can anybody please guide me? Also, let me know about good resources to learn the same.
Thanks in advance.
Try these resouces
OpenCV's own Android tutorials.
Tegra Android Development Pack by NVIDIA contains more than ten example Android projects which use OpenCV. In the doc folder there is some explanation, but not for all of them. You have to register to NVIDIA and apply as Tegra Developer, which means filling a form with general information.
Java Native Interface (JNI)
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm developing an application in Objective-C. Is there a way to translate Objective-C based source code into an Android based source code without developing an Android app from scratch?
I don't think so, usually people look at things like monotouch and phone gap before development time.
jumping languages and platforms like that would be very very tricky.
This might help: https://code.google.com/p/objc2j/
Converting the code perfectly would be near impossible, but this does exist.
Keep in mind though that Android is very different from iOS, and porting an app like this will almost definitely not work out for you.
It would be much more worthwhile to write it from scratch on Android if you are serious about having a market on the platform.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Is there any iOS Storyboard equivalent for Android development?
iOS Storyboard is fantastic that saves us a lot of time writing code. It is almost like a direct wireframe/prototype to final development too.
Anything on Android development which can perform the same?
UPDATE
Navigation Editor isn't available in Android Studio starting from
version 2.0. It was an experimental feature and we may re-visit it in
the future. Information on this page is left for archive purposes.
Android tools team just launched an early prototype of Navigation Editor for Android Applications, which they're planning to release next year
As of now, it'll be available to try/use in Android Studio.
Get all the information on Android tools website: http://tools.android.com/navigation-editor
Honestly I dont think there is. Although I am sure you can find tools to allow you to create the workflow between screens of your application.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am interested in starting Mobile application Development.There are many suggestions on internet but,I wanted to have some starting guidelines from professional People out there like how they do it and what they use also
1.I want to develop Android Applications can you suggest me Simulator as well as good Starting Point(like links to tutorials)?
2.I have worked on c/c++/c# so is it going to be hard to learn Android?
I know this is a bit theoretical
question that may invoke long
discussions but i wanted to set
starting point not only for me but for
others who see this thread so that
they do not have to post question,Yet
get answer that how it is
professionally done
You need the android SDK (including emulator)
You should learn "android" as an operating system / middleware, but the applications are written in Java (using android SDK as well). The tutorials and documentation that are in the android developers' site are pretty good and will give you the basics, but you should learn Java in order to create applications on android.
Unlike other "Documentation sites", the android documentation is really really helpful and easy to understand for new-comers.
p.s. I am ignoring native code and C libraries in purpose.