A modern Android app for the Champaign-Urbana bus system.
A release version of the code can be found on the Play Store as Transit for CUMTD.
In order to test debug builds, you'll have to add your own MTD API Key, which can be found here.
The file APIService.java
looks for a MTD.java
file with the static variable apiKey
.
So, you must first create a file named MTD.java
under /mobile/src/main/java/me/hyunbin/transit/
and add your key as follows:
package me.hyunbin.transit;
public class MTD {
public static final String apiKey = "your key goes here";
}
Afterwards you should be able to compile and test the code. :]