Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I'm really new to this and I don't have any idea how to do this: how do you get the whole source code from this project ?
Please tell me because i can't find the download button. I go to the download tab and it's not there.
Thanks.
Click the "Checkout" link under the "Source" tab in the menu.
There, you'll get a Mercurial command you can execute in your shell:
hg clone https://code.google.com/p/andenginelivewallpaperextensionexample/
See also:
Mercurial Beginner's Guides
Where can I find a good Eclipse Mercurial Plugin?
Click on the source tab
Here is the whole command that you can use to download the source of the project:
hg clone https://code.google.com/p/andenginelivewallpaperextensionexample/
hg is a tool that comes with Mercurial, you need Mercurial to get that repository.
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 9 years ago.
Improve this question
What is the best way of setting up a multi-platform (iOS/Android) phonegap repository (git or svn). How do you handle mutually exclusive file/folders inside the the www folder specifically javascript plugin files.
You should read this link here:
http://docs.phonegap.com/en/edge/guide_cli_index.md.html#The%20Command-line%20Interface
It has some really good information on installing a command line tool and doing exactly what you are talking about. You'll need node.js installed(actually you'll need its npm which comes with node), if you don't have this you can find installation instructions on the Node.js site and it's a really cool project as well. After that you can create a project from the command line, add platforms, plugins, and it creates a merges folder that you can use to add in platform specific JavaScript or css.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I found an interesting project
http://code.google.com/p/android-protips-location/
with the level of my knowledge I can not understand on the move, I wanted to download and run eclipse but can not download it.
can someone know where I can download
It's a SVN repository. SVN is a version control system (Software used to track changes to your code etc) . You have to check out the repository using an SVN client of some sort.
check this tutorial out for using an SVN client.
http://www.themememe.com/subversion-for-absolute-beginners
Since you dont want to contribute any changes back to the project, you can use simply look up the importing part. But I recommend you learn more about SVN and other version control systems such as GIT. They will really help you in any kind of software engineering.
Download the SVN tortise softaware than paste the project link as it is like :
svn checkout http://android-protips-location.googlecode.com/svn/trunk/
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
i want to downloaad the .zip source code files for mytracks opensource app for android but find no download link and am only able to create clone from http://code.google.com/p/mytracks/
Please tell me or send me a link for the source code for mytracks in .zip format ?
If the developer has not provided a source archive, then you'll have to generate one yourself.
However, you can still easily get the source code by setting up and configuring Mercurial, and then executing the following in the command line:
hg clone https://code.google.com/p/mytracks/
This will download the source code to your current working directory.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
There was some sample codes in the resource section, explaining some examples, that now are gone.
i.e http://developer.android.com/resources/samples/TicTacToeMain/index.html
when click on them it takes you to http://developer.android.com/tools/samples/index.html
any help regarding this ?
EDITED:
Issue >>> http://code.google.com/p/android/issues/detail?id=33495
What you can do is download the Samples from this link http://developer.android.com/tools/samples/index.html and then follow these steps to get it running on Eclipse:
File ->New -> Android Project -> Create Project from existing sample -> Select the version(for which you have downloaded the Samples) -> Select the Sample.
In this way you can import the sample reference program provided by android and it will help you in getting good hold of its API's.
If you are looking for an Tic Toe Tutorial this series of tutorial may help you to follow http://www.androiddom.com/2011/05/introducing-tic-tac-toe-tutorial.html
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I need to customize the android.widget.Gallery. Where can I download the source code?
Here it is:
http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/2.1_r2/android/widget/Gallery.java
I like GrepCode most because it's really convenience to browser Android source code online, as well as reference others class.
Here's the link to the latest version of the android.widget package:
https://android.googlesource.com/platform/frameworks/base/+/master/core/java/android/widget/
You can find the source to Gallery.java there. Of
course you can also check out the whole source code as well.
You can find it here
In linux or mac you may download the whole source. see here
You can find it here
Google Code Search is such an underused resource. Enjoy it.
You will likely need other files from the source code as well.
Also, make sure to document the changes you make or you will face a hell of a challenge when you want to update to a new version of the Gallery.
Here is the list of Git repos: https://android.googlesource.com
It's a good idea to check this guide out: http://source.android.com/source/downloading.html
And here is the actual class:
https://android.googlesource.com/platform/frameworks/base/+/master/core/java/android/widget/Gallery.java