An Android strategy game made by 3 students at Bern University of Applied Sciences.
Authors:
- Steven Cardini
- Sebastian Häni
- Raphael Laubscher
- Install Android Studio including the SDK
- Fetch yourself a copy of the source (
git clone https://github.com/sebastianhaeni/edgewars.git
) - Start Android Studio and select "Import project from Eclipse, Gradle, ..." and point
edgewars/build.gradle
- Wait until the import is finished. It will take a while because it needs to download all dependencies.
- Start the game with "Run `app`" and select an emulator or a connected device
To use a physical device to test, you need at least Android 5.1 on your phone.
Then you also need to enable the developer options. Use Google to find out how to activate that for your own device.
Then enable "USB Debugging" and connect it to your computer. The computer may not have the device specific drivers. You need to google that too as it's not the same process for every device.
When the phone is correctly connected, it should show up in Android Studio when you try to run the app.
For every task a developer creates a branch with a dash-delimited name. Once the task is finished the branch is merged into master and deleted.
- Class member variables begin with
m
. Example:mNodes
- Android Studio default settings are the standard we use.
- All gradle lint warnings have to be resolved before a pull request