mirror of
https://github.com/etesync/android
synced 2025-01-15 10:11:18 +00:00
20 lines
417 B
Java
20 lines
417 B
Java
|
package at.bitfire.davdroid.test;
|
||
|
|
||
|
import java.net.URI;
|
||
|
import java.net.URISyntaxException;
|
||
|
|
||
|
import android.util.Log;
|
||
|
|
||
|
public class Constants {
|
||
|
public static final String ROBOHYDRA_BASE = "http://10.0.0.11:3000/";
|
||
|
|
||
|
public static URI roboHydra;
|
||
|
static {
|
||
|
try {
|
||
|
roboHydra = new URI(ROBOHYDRA_BASE);
|
||
|
} catch(URISyntaxException e) {
|
||
|
Log.wtf("davdroid.test.Constants", "Invalid RoboHydra base URL");
|
||
|
}
|
||
|
}
|
||
|
}
|