blob: 647bf791ac4ba3281dfdf57c517667446d1425e7 [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;
Narayan Kamathcb1a4772011-06-28 13:46:59 +010020import android.app.SearchManager;
Joe Onorato9c1289c2009-08-17 11:03:03 -040021import android.content.ContentResolver;
Winson Chung4afe9b32011-07-27 17:46:20 -070022import android.content.Context;
Joe Onorato9c1289c2009-08-17 11:03:03 -040023import android.content.Intent;
24import android.content.IntentFilter;
Winson Chungaafa03c2010-06-11 17:34:16 -070025import android.content.res.Configuration;
Joe Onorato9c1289c2009-08-17 11:03:03 -040026import android.database.ContentObserver;
27import android.os.Handler;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080028
Michael Jurkaa8c760d2011-04-28 14:59:33 -070029import java.lang.ref.WeakReference;
30
The Android Open Source Project31dd5032009-03-03 19:32:27 -080031public class LauncherApplication extends Application {
32 @Override
33 public void onCreate() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -080034 super.onCreate();
Daniel Sandlercc8befa2013-06-11 14:45:48 -040035 LauncherAppState.getInstance().init(getApplicationContext());
Joe Onorato9c1289c2009-08-17 11:03:03 -040036 }
37
Joe Onorato9c1289c2009-08-17 11:03:03 -040038 @Override
39 public void onTerminate() {
40 super.onTerminate();
Daniel Sandlercc8befa2013-06-11 14:45:48 -040041 LauncherAppState.getInstance().onTerminate();
Joe Onorato9c1289c2009-08-17 11:03:03 -040042 }
Daniel Sandlercc8befa2013-06-11 14:45:48 -040043}