This is an Android app with the following features:
- Show the opening status of hacker- and makerspaces using the SpaceAPI
- Show information about the space (contact, location, sensors, ...)
- Status widget, multiple widgets supported
The app was originally developed in 2012 by @rorist from FIXME Lausanne. In 2021, the app was transferred to the SpaceAPI community repositories and is now mainly being developed by members of Coredump.
First, get the sources.
git clone --recursive https://github.com/spaceapi-community/my-hackerspace.git
cd my-hackerspace
With Android Studio, simply open the project directory and you should be set.
You can build the project using Gradle.
The following examples use the gradle wrapper script which will automatically
download gradle to your local directory. If you want to use your own
system-wide installation instead, simply replace ./gradlew
commands with
gradle
.
First, copy local.properties.example
to local.properties
and adjust the
path to your Android SDK installation.
To build a debug APK:
./gradlew assembleDebug
You will find your APK file in the app/build/outputs/apk/
directory.
You can also build and directly install the file to your connected smartphone:
./gradlew assembleDebug installDebug
To see other tasks that gradle offers, run
./gradlew tasks