The ContactTracer App for Android
A Contact Tracing App implementation, that uses Bluetooth Low Energy(BLE).
To be used in conjunction with contact-tracer-backend
Set the following variables with the server IP Address
//MainActivity.java
public String apiEndpoint = "<Server IP Address>/api/infected"
//LoginActivity.java
public String loginEndpoint = "<Server IP Address>/auth/login"
//RegisterActivity.java
public String loginEndpoint = "<Server IP Address>/auth/register"
//JWT_Token_Handler.java
//Ensure this JWT Secret is the same as the one used in the backend server
private static final String key = "<Base64 Encoded JWT Secret>"
Build and run the app :)