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 study a course of development android application, i want to see a real professional code.
Is have a way to find in web a real working android applications and inspect their code for learning purpose?
Have a look at
https://github.com/google/iosched/tree/master/android
Google I/O is a developer conference held each year with two days of deep technical content featuring technical sessions and hundreds of demonstrations from developers showcasing their technologies.
This project is the Android app for the conference. The app supports devices running Android 4.0+, and is optimized for phones and tablets of all shapes and sizes
You can explore online repository hosting platform Github for Android projects and for others,too. There are huge number of good projects.
Android provides official sample applications projects for each API version. You can download them via SDK manager and also from google's android developer site
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 6 years ago.
Improve this question
I have been looking for an up-to-date answer to the question:
What is the recommended AR Framework to use for Android App development?
I want to start to learn AR so a framework with tutorials, community, etc... is preferable. So far the 2 that popped out are: Vuforia (Free version / License) and ARToolkit (Open-Source).
While looking I didn't find a lot of content for developing in Android Studio, why is that? There's plenty of Unity + Framework X content, but none for Android Studio.
Looking for people to shed some light on this and share his/her experience developping AR apps.
Thanks already
Before it was Metaio, but it was bought by apple. I used for many years and it was ok but it is not available anymore for Android.
Aside from what you mentioned there is also Wikitude SDK and DroidAR:
Wikitude SDK
DroidAR
There might be more but so far I haven't heard. It is also worth tracking the future development of Vulkan Api.
Vulkan
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
As an intermediate-level programmer of C++ (that have been working on C++ for console apps and used only FLTK for GUI apps), I heard much about Qt5 to be suitable and very powerful for creating apps for many platforms such as Windows, Linux, iOS and also Android.
I'm now a novice on Qt and to create apps for PC, I'm going to start reading this book (which is of Qt4).
But I, too, like to start reading a good book on Qt5 that makes me able to create apps for iOS and Android. Is there such a good book?
Any suggestion is fully appreciated.
This book will give you common sense about Qt, but keep in mind that there's a lot of difference between Qt4 and Qt5 (most important that Qt5 improves QtQuick module). To build your iOS or Android app I suggest you will need look deep inside of QtQuick. This book will help you 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 7 years ago.
Improve this question
I was wondering that Clash of Clans, Candy Crush etc. are they being developed in Android Studio? Since i haven't seen any tutorials, i am kind of stuck at game development. iOS provides SpriteKit and its really useful. I couldn't find anything related to android game development.
Thanks in advance
Please note that game development for Android has various paths.
I will try to present some of them:
1) The most powerful tool for creating game is Unity Game Engine.
It gives enormous options for crating game (in C# and JavaScript).
What is interesting, you can create game for many platforms in Unity like Android, iOS, Windows Phone (there are 24 platforms that can run Unity Games!!!)
Please see this link:
https://unity3d.com/unity
2) Another option for creating games (but poorer that Unity) is Scirra
Construct 2.
That one is interesting because you dont have to know any programming language.
Creating games is based on instructions (which are converted to html after creating the game).
You can try it for free here:
https://www.scirra.com/
3) You can also try KiloBolt tool for creating simple Android games.
You can write natively in Java.
Description and tutorials you can find here:
http://www.kilobolt.com/game-development-tutorial.html
I hope that helped you.
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
Well i am trying to find a good software which helps me in coding. Hassle free and a bit helpy?
As of now eclipse is generally used by most of the people around the world. You can download the same either from eclipse official site and download the plugin for the same
Or you can use Android studio for the same. To do the same you can download it from the official android developers site https://developer.android.com/sdk/index.html .
Do keep in mind that after some time, android studio may be used more by people as it is developed only for android development and also google is stopping to provide support for eclipse.
One more thing that, once you download the software, you will need to install sdk's for the api level for which you want to develop
All the support for development for android is available at the above mentioned link. Information about all the libraries are also available at the same. For more resources, you can always use youtube for the possible leacture series and also use stackoverflow and codata whenever you are stuck.
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.