Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ikolomiyets committed Apr 1, 2019
0 parents commit 924ff13
Show file tree
Hide file tree
Showing 37 changed files with 913 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
*.iml
.gradle
/local.properties
/.idea
.DS_Store
/build
/captures
.externalNativeBuild
1 change: 1 addition & 0 deletions app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
34 changes: 34 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

android {
compileSdkVersion 28
defaultConfig {
applicationId "io.iktech.demo.bttest"
minSdkVersion 19
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:design:28.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
21 changes: 21 additions & 0 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}

# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
package io.iktech.demo.bttest

import android.support.test.InstrumentationRegistry
import android.support.test.runner.AndroidJUnit4

import org.junit.Test
import org.junit.runner.RunWith

import org.junit.Assert.*

/**
* Instrumented test, which will execute on an Android device.
*
* See [testing documentation](http://d.android.com/tools/testing).
*/
@RunWith(AndroidJUnit4::class)
class ExampleInstrumentedTest {
@Test
fun useAppContext() {
// Context of the app under test.
val appContext = InstrumentationRegistry.getTargetContext()
assertEquals("io.iktech.demo.bttest", appContext.packageName)
}
}
27 changes: 27 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.iktech.demo.bttest">

<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-feature android:name="android.hardware.bluetooth" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>

<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>

</manifest>
243 changes: 243 additions & 0 deletions app/src/main/java/io/iktech/demo/bttest/MainActivity.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,243 @@
package io.iktech.demo.bttest

import android.app.AlertDialog
import android.app.Dialog
import android.bluetooth.BluetoothAdapter
import android.bluetooth.BluetoothDevice
import android.bluetooth.BluetoothServerSocket
import android.bluetooth.BluetoothSocket
import android.content.*
import android.os.Bundle
import android.support.design.widget.Snackbar
import android.support.v4.app.DialogFragment
import android.support.v7.app.AppCompatActivity;
import android.util.Log
import android.view.Menu
import android.view.MenuItem
import android.widget.ArrayAdapter
import android.widget.Button
import android.widget.EditText
import android.widget.TextView

import kotlinx.android.synthetic.main.activity_main.*
import java.io.*
import java.lang.Exception
import java.util.*

var devices = ArrayList<BluetoothDevice>()
var devicesMap = HashMap<String, BluetoothDevice>()
var mArrayAdapter: ArrayAdapter<String>? = null
val uuid: UUID = UUID.fromString("8989063a-c9af-463a-b3f1-f21d9b2b827b")
var message = ""

class MainActivity : AppCompatActivity() {
private var textView: TextView? = null

override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
setSupportActionBar(toolbar)

mArrayAdapter = ArrayAdapter(this, R.layout.dialog_select_device)
val filter = IntentFilter(BluetoothDevice.ACTION_FOUND)
registerReceiver(mReceiver, filter) // Don't forget to unregister during onDestroy
this.textView = findViewById(R.id.textView)
val button = findViewById<Button>(R.id.button)
button.setOnClickListener {view ->
if (BluetoothAdapter.getDefaultAdapter() == null) {
Snackbar.make(view, "Bluetooth is disabled", Snackbar.LENGTH_LONG)
.setAction("Action", null).show()

} else {
devicesMap = HashMap()
devices = ArrayList()
mArrayAdapter!!.clear()

val editText = findViewById<EditText>(R.id.editText)
message = editText.text.toString()
editText.text.clear()
for (device in BluetoothAdapter.getDefaultAdapter().bondedDevices) {
devicesMap.put(device.address, device)
devices.add(device)
// Add the name and address to an array adapter to show in a ListView
mArrayAdapter!!.add((if (device.name != null) device.name else "Unknown") + "\n" + device.address + "\nPared")
}

// Start discovery process
if (BluetoothAdapter.getDefaultAdapter().startDiscovery()) {
val dialog = SelectDeviceDialog()
dialog.show(supportFragmentManager, "select_device")
}
}
}

BluetoothServerController(this).start()
}

override fun onCreateOptionsMenu(menu: Menu): Boolean {
// Inflate the menu; this adds items to the action bar if it is present.
menuInflater.inflate(R.menu.menu_main, menu)
return true
}

override fun onOptionsItemSelected(item: MenuItem): Boolean {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
return when (item.itemId) {
R.id.action_settings -> true
else -> super.onOptionsItemSelected(item)
}
}

fun appendText(text: String) {
runOnUiThread {
this.textView?.text = this.textView?.text.toString() +"\n" + text
}
}
// Create a BroadcastReceiver for ACTION_FOUND
private val mReceiver = object : BroadcastReceiver() {
override fun onReceive(context: Context, intent: Intent) {
val action = intent.action
// When discovery finds a device
if (BluetoothDevice.ACTION_FOUND == action) {
// Get the BluetoothDevice object from the Intent
val device = intent.getParcelableExtra<BluetoothDevice>(BluetoothDevice.EXTRA_DEVICE)
val pairedDevice = devicesMap[device.address]
if (pairedDevice == null) {
var index = -1
for (i in devices.indices) {
val tmp = devices[i]
if (tmp.address == device.address) {
index = i
break
}
}

if (index > -1) {
if (device.name != null) {
mArrayAdapter?.insert(
(if (device.name != null) device.name else "Unknown") + "\n" + device.address,
index
)
}
} else {
devices.add(device)
// Add the name and address to an array adapter to show in a ListView
mArrayAdapter?.add((if (device.name != null) device.name else "Unknown") + "\n" + device.address)
}
}
}
}
}

}

class BluetoothServerController(activity: MainActivity) : Thread() {
private var cancelled: Boolean
private val serverSocket: BluetoothServerSocket?
private val activity = activity

init {
val btAdapter = BluetoothAdapter.getDefaultAdapter()
if (btAdapter != null) {
this.serverSocket = btAdapter.listenUsingRfcommWithServiceRecord("test", uuid)
this.cancelled = false
} else {
this.serverSocket = null
this.cancelled = true
}

}

override fun run() {
var socket: BluetoothSocket

while(true) {
if (this.cancelled) {
break
}

try {
socket = serverSocket!!.accept()
} catch(e: IOException) {
break
}

if (!this.cancelled && socket != null) {
Log.i("server", "Connecting")
BluetoothServer(this.activity, socket).start()
}
}
}

fun cancel() {
this.cancelled = true
this.serverSocket!!.close()
}
}

class BluetoothServer(private val activity: MainActivity, private val socket: BluetoothSocket): Thread() {
private val inputStream = this.socket.inputStream
private val outputStream = this.socket.outputStream

override fun run() {
try {
val available = inputStream.available()
val bytes = ByteArray(available)
Log.i("server", "Reading")
inputStream.read(bytes, 0, available)
val text = String(bytes)
Log.i("server", "Message received")
Log.i("server", text)
activity.appendText(text)
} catch (e: Exception) {
Log.e("client", "Cannot read data", e)
} finally {
inputStream.close()
outputStream.close()
socket.close()
}
}
}

class SelectDeviceDialog: DialogFragment() {
override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
val builder = AlertDialog.Builder(this.activity)
builder.setTitle("Send message to")
builder.setAdapter(mArrayAdapter) { _, which: Int ->
BluetoothAdapter.getDefaultAdapter().cancelDiscovery()
BluetoothClient(devices[which]).start()
}

return builder.create()
}

override fun onCancel(dialog: DialogInterface?) {
super.onCancel(dialog)
}
}

class BluetoothClient(device: BluetoothDevice): Thread() {
private val socket = device.createRfcommSocketToServiceRecord(uuid)

override fun run() {
Log.i("client", "Connecting")
this.socket.connect()

Log.i("client", "Sending")
val outputStream = this.socket.outputStream
val inputStream = this.socket.inputStream
try {
outputStream.write(message.toByteArray())
outputStream.flush()
Log.i("client", "Sent")
} catch(e: Exception) {
Log.e("client", "Cannot send", e)
} finally {
outputStream.close()
inputStream.close()
this.socket.close()
}
}
}
Loading

0 comments on commit 924ff13

Please sign in to comment.