]>
Commit | Line | Data |
---|---|---|
8dfb76c9 MG |
1 | package ro.ieval.fonbot; |
2 | ||
3 | import android.app.Application; | |
4 | import android.content.Intent; | |
5 | import android.telephony.PhoneStateListener; | |
6 | import android.telephony.TelephonyManager; | |
7 | ||
8dfb76c9 MG |
8 | /* |
9 | * Copyright © 2013 Marius Gavrilescu | |
10 | * | |
11 | * This file is part of FonBot. | |
12 | * | |
13 | * FonBot is free software: you can redistribute it and/or modify | |
14 | * it under the terms of the GNU General Public License as published by | |
15 | * the Free Software Foundation, either version 3 of the License, or | |
16 | * (at your option) any later version. | |
17 | * | |
18 | * FonBot is distributed in the hope that it will be useful, | |
19 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 | * GNU General Public License for more details. | |
22 | * | |
23 | * You should have received a copy of the GNU General Public License | |
24 | * along with FonBot. If not, see <http://www.gnu.org/licenses/>. | |
25 | */ | |
26 | ||
27 | /** | |
28 | * The {@link Application} class of FonBot. Registers the device with GCM, starts the TTS service and keeps global state. | |
29 | * | |
30 | * @author Marius Gavrilescu <marius@ieval.ro> | |
31 | */ | |
32 | public final class FonBotApplication extends Application { | |
33 | /** | |
34 | * iEval GCM sender id | |
35 | */ | |
36 | public static final String GCM_SENDER_ID = "379674287523"; | |
8dfb76c9 MG |
37 | |
38 | @Override | |
39 | public void onCreate() { | |
40 | super.onCreate(); | |
8dfb76c9 MG |
41 | |
42 | final TelephonyManager tman=(TelephonyManager) getSystemService(TELEPHONY_SERVICE); | |
43 | tman.listen(new FonBotPhoneStateListener(this), PhoneStateListener.LISTEN_CALL_STATE); | |
8dfb76c9 | 44 | |
8dfb76c9 MG |
45 | startService(new Intent(this, FonBotMainService.class)); |
46 | ||
47 | // Thread.setDefaultUncaughtExceptionHandler(new RemoteCrashdumpHandler(this)); | |
48 | } | |
49 | } |