Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 974 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 974 Bytes

BetterMTD

A modern Android app for the Champaign-Urbana bus system.

Release Version

A release version of the code can be found on the Play Store as Transit for CUMTD.

Building the Project

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. :]