/* * Copyright (C) 2016 Simon Fels * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License version 3, as published * by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranties of * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR * PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . * */ package org.anbox.appmgr; import android.app.Activity; import android.os.Bundle; import android.util.Log; import android.content.Intent; public final class LauncherActivity extends Activity { private static final String TAG = "AnboxAppMgr"; @Override public void onCreate(Bundle info) { super.onCreate(info); Intent intent = new Intent(this, LauncherService.class); startService(intent); Log.i(TAG, "Created launcher activity"); } @Override public void onDestroy() { Log.i(TAG, "Destroyed launcher activity"); Intent intent = new Intent(this, LauncherService.class); stopService(intent); super.onDestroy(); } }