AdapterApp.java revision 31ba132491053bc86d419a7d51fc04af3299c076
1/*
2 * Copyright (C) 2012 Google Inc.
3 */
4
5/**
6 * @hide
7 */
8
9package com.android.bluetooth.btservice;
10
11import android.app.Application;
12import android.util.Log;
13
14public class AdapterApp extends Application {
15    private static final String TAG = "BluetoothAdapterApp";
16    private static final boolean DBG = true;
17
18    static {
19        if (DBG) Log.d(TAG,"Loading JNI Library");
20        System.loadLibrary("bluetooth_jni");
21    }
22
23    @Override
24    public void onCreate() {
25        super.onCreate();
26        if (DBG) Log.d(TAG, "onCreate");
27    }
28
29    @Override
30    protected void finalize() throws Throwable {
31        super.finalize();
32        if (DBG) Log.d(TAG, "finalize");
33    }
34}
35