Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.bluetooth.BluetoothAdapter;

import android.content.Context;

public class Main {
    private static BluetoothAdapter mBluetoothAdapter;
    private static Context mContext;

    public static void initBluetooth(Context context) {
        // Get local Bluetooth adapter
        if (mBluetoothAdapter == null)
            mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
        mContext = context;
    }
}