blob: 8b179f1e7f36c56ce7e8a0107b324d1ada2c1dfe [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
Daniel Sandlercc8befa2013-06-11 14:45:48 -04002 * Copyright (C) 2013 The Android Open Source Project
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Daniel Sandler325dc232013-06-05 22:57:57 -040017package com.android.launcher3;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
19import android.app.Application;
Michael Jurkaa8c760d2011-04-28 14:59:33 -070020
The Android Open Source Project31dd5032009-03-03 19:32:27 -080021public class LauncherApplication extends Application {
22 @Override
23 public void onCreate() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -080024 super.onCreate();
Daniel Sandlere4f98912013-06-25 15:13:26 -040025 LauncherAppState.setApplicationContext(this);
26 LauncherAppState.getInstance();
Joe Onorato9c1289c2009-08-17 11:03:03 -040027 }
28
Joe Onorato9c1289c2009-08-17 11:03:03 -040029 @Override
30 public void onTerminate() {
31 super.onTerminate();
Daniel Sandlercc8befa2013-06-11 14:45:48 -040032 LauncherAppState.getInstance().onTerminate();
Joe Onorato9c1289c2009-08-17 11:03:03 -040033 }
Daniel Sandlercc8befa2013-06-11 14:45:48 -040034}