Back to project page BluetoothGlass.
The source code is released under:
GNU General Public License
If you think the Android project BluetoothGlass listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.vicmns.bluetoothglass.client; //from w w w. ja v a 2 s . co m import android.app.Application; import com.vicmns.bluetoothglass.client.data.BluetoothParametersHolder; /** * Created by Victor Cervantes on 3/19/14. */ public class MainApplication extends Application { @Override public void onCreate() { new BluetoothParametersHolder(); super.onCreate(); } }