Signed-off-by: Christine Dodrill <me@christine.website>
This commit is contained in:
Cadey Ratio 2021-06-28 19:59:20 -04:00
parent 3a7da00929
commit c3b61ef581
3 changed files with 8 additions and 14 deletions

View File

@ -16,14 +16,12 @@
package website.christine.xesite;
public class Application extends android.app.Application {
@Override
public void onCreate() {
super.onCreate();
}
@Override
public void onCreate() {
super.onCreate();
}
}

View File

@ -10,9 +10,9 @@ public class DelegationService extends
public void onCreate() {
super.onCreate();
registerExtraCommandHandler(new LocationDelegationExtraCommandHandler());
registerExtraCommandHandler(new LocationDelegationExtraCommandHandler());
}
}

View File

@ -18,19 +18,15 @@ package website.christine.xesite;
import android.net.Uri;
public class LauncherActivity
extends com.google.androidbrowserhelper.trusted.LauncherActivity {
@Override
protected Uri getLaunchingUrl() {
// Get the original launch Url.
Uri uri = super.getLaunchingUrl();
return uri;
}