blob: f72988d5782b966c825088a793dbdf6e01863f15 [file] [log] [blame]
nxpandroid64fd68c2015-09-23 16:45:15 +05301/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
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
17package com.android.nfc;
18
19import android.app.ActivityManager;
20import android.app.ActivityManager.RunningAppProcessInfo;
21import android.app.Application;
22import android.os.Process;
23import android.os.UserHandle;
nxpandroid281eb922016-08-25 20:27:46 +053024import android.view.ThreadedRenderer;
nxpandroid2441c132017-09-14 11:56:39 +053025import android.content.pm.PackageManager;
nxpandroid64fd68c2015-09-23 16:45:15 +053026
27import java.util.Iterator;
28import java.util.List;
29
30public class NfcApplication extends Application {
31
32 static final String TAG = "NfcApplication";
33 static final String NFC_PROCESS = "com.android.nfc";
34
35 NfcService mNfcService;
36
37 public NfcApplication() {
38
39 }
40
41 @Override
42 public void onCreate() {
43 super.onCreate();
nxpandroid2441c132017-09-14 11:56:39 +053044 PackageManager pm = getApplicationContext().getPackageManager();
45 if (!pm.hasSystemFeature(PackageManager.FEATURE_NFC_ANY)) {
46 pm.setApplicationEnabledSetting(getApplicationContext().getPackageName(),
47 PackageManager.COMPONENT_ENABLED_STATE_DISABLED, 0);
48 return;
49 }
nxpandroid64fd68c2015-09-23 16:45:15 +053050
51 boolean isMainProcess = false;
52 // We start a service in a separate process to do
53 // handover transfer. We don't want to instantiate an NfcService
54 // object in those cases, hence check the name of the process
55 // to determine whether we're the main NFC service, or the
56 // handover process
57 ActivityManager am = (ActivityManager)this.getSystemService(ACTIVITY_SERVICE);
58 List processes = am.getRunningAppProcesses();
59 Iterator i = processes.iterator();
60 while (i.hasNext()) {
61 RunningAppProcessInfo appInfo = (RunningAppProcessInfo)(i.next());
62 if (appInfo.pid == Process.myPid()) {
63 isMainProcess = (NFC_PROCESS.equals(appInfo.processName));
64 break;
65 }
66 }
67 if (UserHandle.myUserId() == 0 && isMainProcess) {
68 mNfcService = new NfcService(this);
nxpandroid281eb922016-08-25 20:27:46 +053069 ThreadedRenderer.enableForegroundTrimming();
nxpandroid64fd68c2015-09-23 16:45:15 +053070 }
71 }
72}