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.support.annotation.NonNull;

public class Main {
    public static @NonNull String getDeviceId() {
        BluetoothAdapter myDevice = BluetoothAdapter.getDefaultAdapter();
        String deviceName = myDevice.getName();
        return android.os.Build.BRAND + "-" + android.os.Build.MODEL + "-" + deviceName;
    }
}