Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zonyitoo/android-game24
HKU COMP7506_1A_2014 (Course Project)
https://github.com/zonyitoo/android-game24
Last synced: 3 months ago
JSON representation
HKU COMP7506_1A_2014 (Course Project)
- Host: GitHub
- URL: https://github.com/zonyitoo/android-game24
- Owner: zonyitoo
- Created: 2014-10-08T09:40:31.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-01T02:37:50.000Z (about 10 years ago)
- Last Synced: 2023-04-09T22:18:56.121Z (over 1 year ago)
- Language: Java
- Homepage:
- Size: 4.06 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 24 Game
This is a course project for COMP7506_1A_2014.
**Copyright by: Yuteng ZHONG (3035169867)**
To my classmates: If you see these codes before the deadline, please feel free to read the code,
but **DO NOT COPY**.## Build
This project is created by AndroidStudio and built with Gradle, but it can also be imported by Eclipse ADT and built.
### Build with Gradle
If you have installed Gradle and have a unix-like environment (Mac OS X, Linux, FreeBSD, Cygwin), just `cd` into the root directory of the project and run
```sh
./gradlew build
```*Note: `gradlew.bat` is the script for Windows' cmd.*
Then Gradle will build the project and generate debug APKs under the directory `app/build/outputs/apk`.
### Install it into the AVD
This is one of the Gradle tasks called `installDebug`, which will install the debug build into the AVD.
```sh
./gradlew installDebug
```To see a list of available tasks, run `./gradlew tasks`
### Build with Eclipse ADT
Just open a new project in Eclipse and import the source code under the directory `app/src/main/java` and the resource files under `app/src/main/res`.
The `AndroidManifest.xml` is located in `app/src/main/AndroidManifest.xml`.