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; package website.christine.xesite;
public class Application extends android.app.Application { public class Application extends android.app.Application {
@Override @Override
public void onCreate() { public void onCreate() {
super.onCreate(); super.onCreate();
} }
} }

View File

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

View File

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