Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import android.app.Service;
import android.content.Context;

import android.hardware.usb.UsbManager;

public class Main {
    private static UsbManager manager;

    public static void useContext(Context context) {
        manager = (UsbManager) context.getSystemService(Service.USB_SERVICE);
    }
}