在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → Android studio蓝牙遥控

Android studio蓝牙遥控

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:99.93M
  • 下载次数:76
  • 浏览次数:593
  • 发布时间:2020-07-12
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
Android studio 蓝牙通信,能与单片机(STM32等)进行通信,按下相关的按键能给单片机上的蓝牙HC05发送数据。
【实例截图】
【核心代码】
遥控
└── 1234
├── 1234.iml
├── LICENSE.txt
├── README.md
├── app
│   ├── app.iml
│   ├── build
│   │   ├── generated
│   │   │   ├── mockable-android-21.v3.jar
│   │   │   └── source
│   │   │   ├── buildConfig
│   │   │   │   ├── androidTest
│   │   │   │   │   └── debug
│   │   │   │   │   └── app
│   │   │   │   │   └── akexorcist
│   │   │   │   │   └── bluetoothspp
│   │   │   │   │   └── test
│   │   │   │   │   └── BuildConfig.java
│   │   │   │   └── debug
│   │   │   │   └── app
│   │   │   │   └── akexorcist
│   │   │   │   └── bluetoothspp
│   │   │   │   └── BuildConfig.java
│   │   │   └── r
│   │   │   ├── androidTest
│   │   │   │   └── debug
│   │   │   │   └── app
│   │   │   │   └── akexorcist
│   │   │   │   └── bluetoothspp
│   │   │   │   └── test
│   │   │   │   └── R.java
│   │   │   └── debug
│   │   │   ├── android
│   │   │   │   └── support
│   │   │   │   ├── compat
│   │   │   │   │   └── R.java
│   │   │   │   ├── constraint
│   │   │   │   │   └── R.java
│   │   │   │   └── percent
│   │   │   │   └── R.java
│   │   │   └── app
│   │   │   └── akexorcist
│   │   │   ├── bluetoothspp
│   │   │   │   └── R.java
│   │   │   └── bluetotohspp
│   │   │   └── library
│   │   │   └── R.java
│   │   ├── intermediates
│   │   │   ├── blame
│   │   │   │   └── res
│   │   │   │   ├── androidTest
│   │   │   │   │   └── debug
│   │   │   │   │   ├── multi-v2
│   │   │   │   │   │   ├── debug.json
│   │   │   │   │   │   ├── values-af.json
│   │   │   │   │   │   ├── values-am.json
│   │   │   │   │   │   ├── values-ar.json
│   │   │   │   │   │   ├── values-bg.json
│   │   │   │   │   │   ├── values-bn-rBD.json
│   │   │   │   │   │   ├── values-ca.json
│   │   │   │   │   │   ├── values-cs.json
│   │   │   │   │   │   ├── values-da.json
│   │   │   │   │   │   ├── values-de.json
│   │   │   │   │   │   ├── values-el.json
│   │   │   │   │   │   ├── values-en-rGB.json
│   │   │   │   │   │   ├── values-en-rIN.json
│   │   │   │   │   │   ├── values-es-rUS.json
│   │   │   │   │   │   ├── values-es.json
│   │   │   │   │   │   ├── values-et-rEE.json
│   │   │   │   │   │   ├── values-eu-rES.json
│   │   │   │   │   │   ├── values-fa.json
│   │   │   │   │   │   ├── values-fi.json
│   │   │   │   │   │   ├── values-fr-rCA.json
│   │   │   │   │   │   ├── values-fr.json
│   │   │   │   │   │   ├── values-gl-rES.json
│   │   │   │   │   │   ├── values-hi.json
│   │   │   │   │   │   ├── values-hr.json
│   │   │   │   │   │   ├── values-hu.json
│   │   │   │   │   │   ├── values-hy-rAM.json
│   │   │   │   │   │   ├── values-in.json
│   │   │   │   │   │   ├── values-is-rIS.json
│   │   │   │   │   │   ├── values-it.json
│   │   │   │   │   │   ├── values-iw.json
│   │   │   │   │   │   ├── values-ja.json
│   │   │   │   │   │   ├── values-ka-rGE.json
│   │   │   │   │   │   ├── values-kk-rKZ.json
│   │   │   │   │   │   ├── values-km-rKH.json
│   │   │   │   │   │   ├── values-kn-rIN.json
│   │   │   │   │   │   ├── values-ko.json
│   │   │   │   │   │   ├── values-ky-rKG.json
│   │   │   │   │   │   ├── values-land.json
│   │   │   │   │   │   ├── values-large-v4.json
│   │   │   │   │   │   ├── values-lo-rLA.json
│   │   │   │   │   │   ├── values-lt.json
│   │   │   │   │   │   ├── values-lv.json
│   │   │   │   │   │   ├── values-mk-rMK.json
│   │   │   │   │   │   ├── values-ml-rIN.json
│   │   │   │   │   │   ├── values-mn-rMN.json
│   │   │   │   │   │   ├── values-mr-rIN.json
│   │   │   │   │   │   ├── values-ms-rMY.json
│   │   │   │   │   │   ├── values-my-rMM.json
│   │   │   │   │   │   ├── values-nb.json
│   │   │   │   │   │   ├── values-ne-rNP.json
│   │   │   │   │   │   ├── values-nl.json
│   │   │   │   │   │   ├── values-pl.json
│   │   │   │   │   │   ├── values-port.json
│   │   │   │   │   │   ├── values-pt-rPT.json
│   │   │   │   │   │   ├── values-pt.json
│   │   │   │   │   │   ├── values-ro.json
│   │   │   │   │   │   ├── values-ru.json
│   │   │   │   │   │   ├── values-si-rLK.json
│   │   │   │   │   │   ├── values-sk.json
│   │   │   │   │   │   ├── values-sl.json
│   │   │   │   │   │   ├── values-sr.json
│   │   │   │   │   │   ├── values-sv.json
│   │   │   │   │   │   ├── values-sw.json
│   │   │   │   │   │   ├── values-sw600dp-v13.json
│   │   │   │   │   │   ├── values-sw720dp-land-v13.json
│   │   │   │   │   │   ├── values-ta-rIN.json
│   │   │   │   │   │   ├── values-te-rIN.json
│   │   │   │   │   │   ├── values-th.json
│   │   │   │   │   │   ├── values-tl.json
│   │   │   │   │   │   ├── values-tr.json
│   │   │   │   │   │   ├── values-uk.json
│   │   │   │   │   │   ├── values-ur-rPK.json
│   │   │   │   │   │   ├── values-uz-rUZ.json
│   │   │   │   │   │   ├── values-v11.json
│   │   │   │   │   │   ├── values-v14.json
│   │   │   │   │   │   ├── values-v17.json
│   │   │   │   │   │   ├── values-v21.json
│   │   │   │   │   │   ├── values-vi.json
│   │   │   │   │   │   ├── values-w360dp-v13.json
│   │   │   │   │   │   ├── values-w480dp-v13.json
│   │   │   │   │   │   ├── values-w500dp-v13.json
│   │   │   │   │   │   ├── values-w600dp-v13.json
│   │   │   │   │   │   ├── values-w720dp-v13.json
│   │   │   │   │   │   ├── values-xlarge-land-v4.json
│   │   │   │   │   │   ├── values-xlarge-v4.json
│   │   │   │   │   │   ├── values-zh-rCN.json
│   │   │   │   │   │   ├── values-zh-rHK.json
│   │   │   │   │   │   ├── values-zh-rTW.json
│   │   │   │   │   │   ├── values-zu.json
│   │   │   │   │   │   └── values.json
│   │   │   │   │   └── single
│   │   │   │   │   └── debug.json
│   │   │   │   └── debug
│   │   │   │   ├── multi-v2
│   │   │   │   │   ├── debug.json
│   │   │   │   │   ├── values-af.json
│   │   │   │   │   ├── values-am.json
│   │   │   │   │   ├── values-ar.json
│   │   │   │   │   ├── values-bg.json
│   │   │   │   │   ├── values-bn-rBD.json
│   │   │   │   │   ├── values-ca.json
│   │   │   │   │   ├── values-cs.json
│   │   │   │   │   ├── values-da.json
│   │   │   │   │   ├── values-de.json
│   │   │   │   │   ├── values-el.json
│   │   │   │   │   ├── values-en-rGB.json
│   │   │   │   │   ├── values-en-rIN.json
│   │   │   │   │   ├── values-es-rUS.json
│   │   │   │   │   ├── values-es.json
│   │   │   │   │   ├── values-et-rEE.json
│   │   │   │   │   ├── values-eu-rES.json
│   │   │   │   │   ├── values-fa.json
│   │   │   │   │   ├── values-fi.json
│   │   │   │   │   ├── values-fr-rCA.json
│   │   │   │   │   ├── values-fr.json
│   │   │   │   │   ├── values-gl-rES.json
│   │   │   │   │   ├── values-hi.json
│   │   │   │   │   ├── values-hr.json
│   │   │   │   │   ├── values-hu.json
│   │   │   │   │   ├── values-hy-rAM.json
│   │   │   │   │   ├── values-in.json
│   │   │   │   │   ├── values-is-rIS.json
│   │   │   │   │   ├── values-it.json
│   │   │   │   │   ├── values-iw.json
│   │   │   │   │   ├── values-ja.json
│   │   │   │   │   ├── values-ka-rGE.json
│   │   │   │   │   ├── values-kk-rKZ.json
│   │   │   │   │   ├── values-km-rKH.json
│   │   │   │   │   ├── values-kn-rIN.json
│   │   │   │   │   ├── values-ko.json
│   │   │   │   │   ├── values-ky-rKG.json
│   │   │   │   │   ├── values-land.json
│   │   │   │   │   ├── values-large-v4.json
│   │   │   │   │   ├── values-lo-rLA.json
│   │   │   │   │   ├── values-lt.json
│   │   │   │   │   ├── values-lv.json
│   │   │   │   │   ├── values-mk-rMK.json
│   │   │   │   │   ├── values-ml-rIN.json
│   │   │   │   │   ├── values-mn-rMN.json
│   │   │   │   │   ├── values-mr-rIN.json
│   │   │   │   │   ├── values-ms-rMY.json
│   │   │   │   │   ├── values-my-rMM.json
│   │   │   │   │   ├── values-nb.json
│   │   │   │   │   ├── values-ne-rNP.json
│   │   │   │   │   ├── values-nl.json
│   │   │   │   │   ├── values-pl.json
│   │   │   │   │   ├── values-port.json
│   │   │   │   │   ├── values-pt-rPT.json
│   │   │   │   │   ├── values-pt.json
│   │   │   │   │   ├── values-ro.json
│   │   │   │   │   ├── values-ru.json
│   │   │   │   │   ├── values-si-rLK.json
│   │   │   │   │   ├── values-sk.json
│   │   │   │   │   ├── values-sl.json
│   │   │   │   │   ├── values-sr.json
│   │   │   │   │   ├── values-sv.json
│   │   │   │   │   ├── values-sw.json
│   │   │   │   │   ├── values-sw600dp-v13.json
│   │   │   │   │   ├── values-sw720dp-land-v13.json
│   │   │   │   │   ├── values-ta-rIN.json
│   │   │   │   │   ├── values-te-rIN.json
│   │   │   │   │   ├── values-th.json
│   │   │   │   │   ├── values-tl.json
│   │   │   │   │   ├── values-tr.json
│   │   │   │   │   ├── values-uk.json
│   │   │   │   │   ├── values-ur-rPK.json
│   │   │   │   │   ├── values-uz-rUZ.json
│   │   │   │   │   ├── values-v11.json
│   │   │   │   │   ├── values-v14.json
│   │   │   │   │   ├── values-v17.json
│   │   │   │   │   ├── values-v21.json
│   │   │   │   │   ├── values-vi.json
│   │   │   │   │   ├── values-w360dp-v13.json
│   │   │   │   │   ├── values-w480dp-v13.json
│   │   │   │   │   ├── values-w500dp-v13.json
│   │   │   │   │   ├── values-w600dp-v13.json
│   │   │   │   │   ├── values-w720dp-v13.json
│   │   │   │   │   ├── values-w820dp-v13.json
│   │   │   │   │   ├── values-xlarge-land-v4.json
│   │   │   │   │   ├── values-xlarge-v4.json
│   │   │   │   │   ├── values-zh-rCN.json
│   │   │   │   │   ├── values-zh-rHK.json
│   │   │   │   │   ├── values-zh-rTW.json
│   │   │   │   │   ├── values-zu.json
│   │   │   │   │   └── values.json
│   │   │   │   └── single
│   │   │   │   └── debug.json
│   │   │   ├── build-info
│   │   │   │   └── debug
│   │   │   │   └── build-info.xml
│   │   │   ├── classes
│   │   │   │   └── debug
│   │   │   │   ├── android
│   │   │   │   │   └── support
│   │   │   │   │   ├── compat
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── constraint
│   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   └── R.class
│   │   │   │   │   └── percent
│   │   │   │   │   ├── R$attr.class
│   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   └── R.class
│   │   │   │   └── app
│   │   │   │   └── akexorcist
│   │   │   │   ├── bluetoothspp
│   │   │   │   │   ├── AutoConnectActivity$1.class
│   │   │   │   │   ├── AutoConnectActivity$2.class
│   │   │   │   │   ├── AutoConnectActivity$3.class
│   │   │   │   │   ├── AutoConnectActivity$4.class
│   │   │   │   │   ├── AutoConnectActivity.class
│   │   │   │   │   ├── BuildConfig.class
│   │   │   │   │   ├── DeviceListActivity$1.class
│   │   │   │   │   ├── DeviceListActivity$2.class
│   │   │   │   │   ├── DeviceListActivity$3.class
│   │   │   │   │   ├── DeviceListActivity.class
│   │   │   │   │   ├── ListenerActivity$1.class
│   │   │   │   │   ├── ListenerActivity$2.class
│   │   │   │   │   ├── ListenerActivity$3.class
│   │   │   │   │   ├── ListenerActivity$4.class
│   │   │   │   │   ├── ListenerActivity$5.class
│   │   │   │   │   ├── ListenerActivity.class
│   │   │   │   │   ├── Main.class
│   │   │   │   │   ├── R$attr.class
│   │   │   │   │   ├── R$dimen.class
│   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   ├── R$id.class
│   │   │   │   │   ├── R$layout.class
│   │   │   │   │   ├── R$menu.class
│   │   │   │   │   ├── R$string.class
│   │   │   │   │   ├── R$style.class
│   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   ├── R.class
│   │   │   │   │   ├── SimpleActivity$1.class
│   │   │   │   │   ├── SimpleActivity$2.class
│   │   │   │   │   ├── SimpleActivity.class
│   │   │   │   │   ├── TerminalActivity$1.class
│   │   │   │   │   ├── TerminalActivity$2.class
│   │   │   │   │   ├── TerminalActivity$3.class
│   │   │   │   │   └── TerminalActivity.class
│   │   │   │   └── bluetotohspp
│   │   │   │   └── library
│   │   │   │   ├── R$dimen.class
│   │   │   │   ├── R$id.class
│   │   │   │   ├── R$layout.class
│   │   │   │   └── R.class
│   │   │   ├── incremental
│   │   │   │   ├── compileDebugAidl
│   │   │   │   │   └── dependency.store
│   │   │   │   ├── compileDebugAndroidTestAidl
│   │   │   │   │   └── dependency.store
│   │   │   │   ├── debug-mergeJavaRes
│   │   │   │   │   ├── merge-state
│   │   │   │   │   └── zip-cache
│   │   │   │   │   ├── +_9umEFmhtiiGMIj7FgmSo3CwVs=
│   │   │   │   │   ├── 416LGY6pF1EY_QVsWulWntsaels=
│   │   │   │   │   ├── D6nlcJtQNXSr59FDoPf_dpei3DI=
│   │   │   │   │   ├── FgF62yx4j3zt+1yPvftkW1xGGGQ=
│   │   │   │   │   ├── _55LMkcRLu8s6tvPUZaBVjp2DyQ=
│   │   │   │   │   ├── f3GPm2FDfW3FD1XtR3i+iX4Gf94=
│   │   │   │   │   └── yqd1uJz2hhyxgDiG9WOZL9wibks=
│   │   │   │   ├── debug-mergeJniLibs
│   │   │   │   │   ├── merge-state
│   │   │   │   │   └── zip-cache
│   │   │   │   │   ├── +_9umEFmhtiiGMIj7FgmSo3CwVs=
│   │   │   │   │   ├── 416LGY6pF1EY_QVsWulWntsaels=
│   │   │   │   │   ├── D6nlcJtQNXSr59FDoPf_dpei3DI=
│   │   │   │   │   ├── FgF62yx4j3zt+1yPvftkW1xGGGQ=
│   │   │   │   │   ├── _55LMkcRLu8s6tvPUZaBVjp2DyQ=
│   │   │   │   │   ├── f3GPm2FDfW3FD1XtR3i+iX4Gf94=
│   │   │   │   │   └── yqd1uJz2hhyxgDiG9WOZL9wibks=
│   │   │   │   ├── mergeDebugAndroidTestResources
│   │   │   │   │   ├── compile-file-map.properties
│   │   │   │   │   ├── merged.dir
│   │   │   │   │   │   ├── values
│   │   │   │   │   │   │   └── values.xml
│   │   │   │   │   │   ├── values-sw600dp-v13
│   │   │   │   │   │   │   └── values-sw600dp-v13.xml
│   │   │   │   │   │   └── values-sw720dp-land-v13
│   │   │   │   │   │   └── values-sw720dp-land-v13.xml
│   │   │   │   │   └── merger.xml
│   │   │   │   ├── mergeDebugAssets
│   │   │   │   │   └── merger.xml
│   │   │   │   ├── mergeDebugJniLibFolders
│   │   │   │   │   └── merger.xml
│   │   │   │   ├── mergeDebugResources
│   │   │   │   │   ├── compile-file-map.properties
│   │   │   │   │   └── merger.xml
│   │   │   │   ├── mergeDebugShaders
│   │   │   │   │   └── merger.xml
│   │   │   │   ├── packageDebug
│   │   │   │   │   └── debug
│   │   │   │   │   ├── dex-renamer-state.txt
│   │   │   │   │   ├── file-input-save-data.txt
│   │   │   │   │   └── zip-cache
│   │   │   │   │   └── wQjJ7T56ILq4pEpYa8WnDLKhOy8=
│   │   │   │   └── packageInstantRunResourcesDebug
│   │   │   │   └── debug
│   │   │   │   ├── dex-renamer-state.txt
│   │   │   │   └── zip-cache
│   │   │   │   └── wQjJ7T56ILq4pEpYa8WnDLKhOy8=
│   │   │   ├── incremental-classes
│   │   │   │   └── debug
│   │   │   │   └── instant-run-bootstrap.jar
│   │   │   ├── incremental-runtime-classes
│   │   │   │   └── debug
│   │   │   │   └── instant-run.jar
│   │   │   ├── incremental-verifier
│   │   │   │   └── debug
│   │   │   │   ├── android
│   │   │   │   │   └── support
│   │   │   │   │   ├── compat
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── constraint
│   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   └── R.class
│   │   │   │   │   └── percent
│   │   │   │   │   ├── R$attr.class
│   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   └── R.class
│   │   │   │   └── app
│   │   │   │   └── akexorcist
│   │   │   │   ├── bluetoothspp
│   │   │   │   │   ├── AutoConnectActivity$1.class
│   │   │   │   │   ├── AutoConnectActivity$2.class
│   │   │   │   │   ├── AutoConnectActivity$3.class
│   │   │   │   │   ├── AutoConnectActivity$4.class
│   │   │   │   │   ├── AutoConnectActivity.class
│   │   │   │   │   ├── BuildConfig.class
│   │   │   │   │   ├── DeviceListActivity$1.class
│   │   │   │   │   ├── DeviceListActivity$2.class
│   │   │   │   │   ├── DeviceListActivity$3.class
│   │   │   │   │   ├── DeviceListActivity.class
│   │   │   │   │   ├── ListenerActivity$1.class
│   │   │   │   │   ├── ListenerActivity$2.class
│   │   │   │   │   ├── ListenerActivity$3.class
│   │   │   │   │   ├── ListenerActivity$4.class
│   │   │   │   │   ├── ListenerActivity$5.class
│   │   │   │   │   ├── ListenerActivity.class
│   │   │   │   │   ├── Main.class
│   │   │   │   │   ├── R$attr.class
│   │   │   │   │   ├── R$dimen.class
│   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   ├── R$id.class
│   │   │   │   │   ├── R$layout.class
│   │   │   │   │   ├── R$menu.class
│   │   │   │   │   ├── R$string.class
│   │   │   │   │   ├── R$style.class
│   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   ├── R.class
│   │   │   │   │   ├── SimpleActivity$1.class
│   │   │   │   │   ├── SimpleActivity$2.class
│   │   │   │   │   ├── SimpleActivity.class
│   │   │   │   │   ├── TerminalActivity$1.class
│   │   │   │   │   ├── TerminalActivity$2.class
│   │   │   │   │   ├── TerminalActivity$3.class
│   │   │   │   │   └── TerminalActivity.class
│   │   │   │   └── bluetotohspp
│   │   │   │   └── library
│   │   │   │   ├── BluetoothSPP$1.class
│   │   │   │   ├── BluetoothSPP$2.class
│   │   │   │   ├── BluetoothSPP$3.class
│   │   │   │   ├── BluetoothSPP$AutoConnectionListener.class
│   │   │   │   ├── BluetoothSPP$BluetoothConnectionListener.class
│   │   │   │   ├── BluetoothSPP$BluetoothStateListener.class
│   │   │   │   ├── BluetoothSPP$OnDataReceivedListener.class
│   │   │   │   ├── BluetoothSPP.class
│   │   │   │   ├── BluetoothService$AcceptThread.class
│   │   │   │   ├── BluetoothService$ConnectThread.class
│   │   │   │   ├── BluetoothService$ConnectedThread.class
│   │   │   │   ├── BluetoothService.class
│   │   │   │   ├── BluetoothState.class
│   │   │   │   ├── BuildConfig.class
│   │   │   │   ├── DeviceList$1.class
│   │   │   │   ├── DeviceList$2.class
│   │   │   │   ├── DeviceList$3.class
│   │   │   │   ├── DeviceList.class
│   │   │   │   ├── R$dimen.class
│   │   │   │   ├── R$id.class
│   │   │   │   ├── R$layout.class
│   │   │   │   └── R.class
│   │   │   ├── instant-run-resources
│   │   │   │   ├── output.json
│   │   │   │   └── resources-debug.ir.ap_
│   │   │   ├── instant-run-support
│   │   │   │   └── debug
│   │   │   │   ├── dependencies
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── manifestChecker
│   │   │   │   │   ├── manifest.crc
│   │   │   │   │   └── manifest.xml
│   │   │   │   ├── package_dependencies
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_0
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_1
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_2
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_3
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_4
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_5
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_6
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_7
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_8
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── package_slice_9
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── slice_0
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── slice_1
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── slice_2
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── slice_3
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── slice_4
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── slice_5
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── slice_6
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── slice_7
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── slice_8
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   └── slice_9
│   │   │   │   └── AndroidManifest.xml
│   │   │   ├── javaPrecompile
│   │   │   │   └── debug
│   │   │   │   └── annotationProcessors.json
│   │   │   ├── manifest
│   │   │   │   └── androidTest
│   │   │   │   └── debug
│   │   │   │   ├── AndroidManifest.xml
│   │   │   │   └── output.json
│   │   │   ├── manifests
│   │   │   │   ├── density
│   │   │   │   │   └── debug
│   │   │   │   │   └── output.json
│   │   │   │   ├── full
│   │   │   │   │   └── debug
│   │   │   │   │   ├── AndroidManifest.xml
│   │   │   │   │   └── output.json
│   │   │   │   └── instant-run
│   │   │   │   └── debug
│   │   │   │   ├── AndroidManifest.xml
│   │   │   │   └── output.json
│   │   │   ├── res
│   │   │   │   ├── androidTest
│   │   │   │   │   └── debug
│   │   │   │   │   ├── output.json
│   │   │   │   │   └── resources-debugAndroidTest.ap_
│   │   │   │   ├── debug
│   │   │   │   │   ├── output.json
│   │   │   │   │   └── resources-debug.ap_
│   │   │   │   ├── merged
│   │   │   │   │   ├── androidTest
│   │   │   │   │   │   └── debug
│   │   │   │   │   │   ├── layout_device_list.xml.flat
│   │   │   │   │   │   ├── layout_device_name.xml.flat
│   │   │   │   │   │   ├── values-sw600dp-v13_values-sw600dp-v13.arsc.flat
│   │   │   │   │   │   ├── values-sw720dp-land-v13_values-sw720dp-land-v13.arsc.flat
│   │   │   │   │   │   └── values_values.arsc.flat
│   │   │   │   │   └── debug
│   │   │   │   │   ├── drawable-hdpi_ic_launcher.png.flat
│   │   │   │   │   ├── drawable-mdpi_ic_launcher.png.flat
│   │   │   │   │   ├── drawable-xhdpi_ic_launcher.png.flat
│   │   │   │   │   ├── drawable-xxhdpi_ic_launcher.png.flat
│   │   │   │   │   ├── layout_activity_autoconnect.xml.flat
│   │   │   │   │   ├── layout_activity_devicelist.xml.flat
│   │   │   │   │   ├── layout_activity_listener.xml.flat
│   │   │   │   │   ├── layout_activity_simple.xml.flat
│   │   │   │   │   ├── layout_activity_terminal.xml.flat
│   │   │   │   │   ├── layout_device_layout_list.xml.flat
│   │   │   │   │   ├── layout_device_layout_text.xml.flat
│   │   │   │   │   ├── layout_device_list.xml.flat
│   │   │   │   │   ├── layout_device_name.xml.flat
│   │   │   │   │   ├── layout_main.xml.flat
│   │   │   │   │   ├── menu_menu_connection.xml.flat
│   │   │   │   │   ├── menu_menu_device_list.xml.flat
│   │   │   │   │   ├── menu_menu_disconnection.xml.flat
│   │   │   │   │   ├── menu_menu_terminal.xml.flat
│   │   │   │   │   ├── values-sw600dp-v13_values-sw600dp-v13.arsc.flat
│   │   │   │   │   ├── values-sw720dp-land-v13_values-sw720dp-land-v13.arsc.flat
│   │   │   │   │   ├── values-v14_values-v14.arsc.flat
│   │   │   │   │   ├── values-v21_values-v21.arsc.flat
│   │   │   │   │   ├── values-w820dp-v13_values-w820dp-v13.arsc.flat
│   │   │   │   │   └── values_values.arsc.flat
│   │   │   │   └── symbol-table-with-package
│   │   │   │   └── debug
│   │   │   │   └── package-aware-r.txt
│   │   │   ├── split-apk
│   │   │   │   └── debug
│   │   │   │   ├── dep
│   │   │   │   │   └── dependencies.apk
│   │   │   │   └── slices
│   │   │   │   ├── slice_0.apk
│   │   │   │   ├── slice_1.apk
│   │   │   │   ├── slice_2.apk
│   │   │   │   ├── slice_3.apk
│   │   │   │   ├── slice_4.apk
│   │   │   │   ├── slice_5.apk
│   │   │   │   ├── slice_6.apk
│   │   │   │   ├── slice_7.apk
│   │   │   │   ├── slice_8.apk
│   │   │   │   └── slice_9.apk
│   │   │   ├── splits-support
│   │   │   │   ├── androidTest
│   │   │   │   │   └── debug
│   │   │   │   │   └── split-list.gson
│   │   │   │   └── debug
│   │   │   │   └── split-list.gson
│   │   │   ├── symbols
│   │   │   │   └── debug
│   │   │   │   └── R.txt
│   │   │   └── transforms
│   │   │   ├── dexBuilder
│   │   │   │   └── debug
│   │   │   │   ├── 359.jar
│   │   │   │   ├── 360.jar
│   │   │   │   ├── 361.jar
│   │   │   │   ├── 362.jar
│   │   │   │   ├── 363.jar
│   │   │   │   ├── 365.jar
│   │   │   │   ├── 369
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── support
│   │   │   │   │   │   └── compat
│   │   │   │   │   │   └── R.dex
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_0.dex
│   │   │   │   ├── 370
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── support
│   │   │   │   │   │   └── percent
│   │   │   │   │   │   ├── R$attr.dex
│   │   │   │   │   │   ├── R$styleable.dex
│   │   │   │   │   │   └── R.dex
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_1.dex
│   │   │   │   ├── 371
│   │   │   │   │   ├── app
│   │   │   │   │   │   └── akexorcist
│   │   │   │   │   │   └── bluetotohspp
│   │   │   │   │   │   └── library
│   │   │   │   │   │   ├── BluetoothSPP$1.dex
│   │   │   │   │   │   ├── BluetoothSPP$2.dex
│   │   │   │   │   │   ├── BluetoothSPP$3.dex
│   │   │   │   │   │   ├── BluetoothSPP$AutoConnectionListener.dex
│   │   │   │   │   │   ├── BluetoothSPP$BluetoothConnectionListener.dex
│   │   │   │   │   │   ├── BluetoothSPP$BluetoothStateListener.dex
│   │   │   │   │   │   ├── BluetoothSPP$OnDataReceivedListener.dex
│   │   │   │   │   │   ├── BluetoothSPP.dex
│   │   │   │   │   │   ├── BluetoothService$AcceptThread.dex
│   │   │   │   │   │   ├── BluetoothService$ConnectThread.dex
│   │   │   │   │   │   ├── BluetoothService$ConnectedThread.dex
│   │   │   │   │   │   ├── BluetoothService.dex
│   │   │   │   │   │   ├── BluetoothState.dex
│   │   │   │   │   │   ├── BuildConfig.dex
│   │   │   │   │   │   ├── DeviceList$1.dex
│   │   │   │   │   │   ├── DeviceList$2.dex
│   │   │   │   │   │   ├── DeviceList$3.dex
│   │   │   │   │   │   ├── DeviceList.dex
│   │   │   │   │   │   ├── R$dimen.dex
│   │   │   │   │   │   ├── R$id.dex
│   │   │   │   │   │   ├── R$layout.dex
│   │   │   │   │   │   └── R.dex
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_2.dex
│   │   │   │   ├── 372
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_3.dex
│   │   │   │   ├── 373
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_4.dex
│   │   │   │   ├── 374
│   │   │   │   │   ├── app
│   │   │   │   │   │   └── akexorcist
│   │   │   │   │   │   └── bluetoothspp
│   │   │   │   │   │   ├── AutoConnectActivity$1.dex
│   │   │   │   │   │   ├── AutoConnectActivity$2.dex
│   │   │   │   │   │   ├── AutoConnectActivity$3.dex
│   │   │   │   │   │   ├── AutoConnectActivity$4.dex
│   │   │   │   │   │   ├── AutoConnectActivity.dex
│   │   │   │   │   │   ├── BuildConfig.dex
│   │   │   │   │   │   ├── DeviceListActivity$1.dex
│   │   │   │   │   │   ├── DeviceListActivity$2.dex
│   │   │   │   │   │   ├── DeviceListActivity$3.dex
│   │   │   │   │   │   ├── DeviceListActivity.dex
│   │   │   │   │   │   ├── ListenerActivity$1.dex
│   │   │   │   │   │   ├── ListenerActivity$2.dex
│   │   │   │   │   │   ├── ListenerActivity$3.dex
│   │   │   │   │   │   ├── ListenerActivity$4.dex
│   │   │   │   │   │   ├── ListenerActivity$5.dex
│   │   │   │   │   │   ├── ListenerActivity.dex
│   │   │   │   │   │   ├── Main.dex
│   │   │   │   │   │   ├── R$attr.dex
│   │   │   │   │   │   ├── R$dimen.dex
│   │   │   │   │   │   ├── R$drawable.dex
│   │   │   │   │   │   ├── R$id.dex
│   │   │   │   │   │   ├── R$layout.dex
│   │   │   │   │   │   ├── R$menu.dex
│   │   │   │   │   │   ├── R$string.dex
│   │   │   │   │   │   ├── R$style.dex
│   │   │   │   │   │   ├── R$styleable.dex
│   │   │   │   │   │   ├── R.dex
│   │   │   │   │   │   ├── SimpleActivity$1.dex
│   │   │   │   │   │   ├── SimpleActivity$2.dex
│   │   │   │   │   │   ├── SimpleActivity.dex
│   │   │   │   │   │   ├── TerminalActivity$1.dex
│   │   │   │   │   │   ├── TerminalActivity$2.dex
│   │   │   │   │   │   ├── TerminalActivity$3.dex
│   │   │   │   │   │   └── TerminalActivity.dex
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_5.dex
│   │   │   │   ├── 375
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_6.dex
│   │   │   │   ├── 376
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_7.dex
│   │   │   │   ├── 377
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_8.dex
│   │   │   │   ├── 378
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── support
│   │   │   │   │   │   └── constraint
│   │   │   │   │   │   ├── R$attr.dex
│   │   │   │   │   │   ├── R$id.dex
│   │   │   │   │   │   ├── R$styleable.dex
│   │   │   │   │   │   └── R.dex
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_9.dex
│   │   │   │   ├── 80.jar
│   │   │   │   ├── 83.jar
│   │   │   │   ├── 89.jar
│   │   │   │   ├── 90.jar
│   │   │   │   ├── 91.jar
│   │   │   │   ├── 92.jar
│   │   │   │   └── __content__.json
│   │   │   ├── dexMerger
│   │   │   │   └── debug
│   │   │   │   ├── 209
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 210
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 211
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 212
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 213
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 214
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 215
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 216
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 217
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 218
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 219
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 220
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 221
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 222
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 223
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 224
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 225
│   │   │   │   │   └── classes.dex
│   │   │   │   └── __content__.json
│   │   │   ├── externalLibsDexMerger
│   │   │   │   └── debug
│   │   │   │   ├── 0
│   │   │   │   │   └── classes.dex
│   │   │   │   └── __content__.json
│   │   │   ├── extractJars
│   │   │   │   └── debug
│   │   │   │   ├── 0
│   │   │   │   │   └── app
│   │   │   │   │   └── akexorcist
│   │   │   │   │   └── bluetotohspp
│   │   │   │   │   └── library
│   │   │   │   │   ├── BluetoothSPP$1.class
│   │   │   │   │   ├── BluetoothSPP$2.class
│   │   │   │   │   ├── BluetoothSPP$3.class
│   │   │   │   │   ├── BluetoothSPP$AutoConnectionListener.class
│   │   │   │   │   ├── BluetoothSPP$BluetoothConnectionListener.class
│   │   │   │   │   ├── BluetoothSPP$BluetoothStateListener.class
│   │   │   │   │   ├── BluetoothSPP$OnDataReceivedListener.class
│   │   │   │   │   ├── BluetoothSPP.class
│   │   │   │   │   ├── BluetoothService$AcceptThread.class
│   │   │   │   │   ├── BluetoothService$ConnectThread.class
│   │   │   │   │   ├── BluetoothService$ConnectedThread.class
│   │   │   │   │   ├── BluetoothService.class
│   │   │   │   │   ├── BluetoothState.class
│   │   │   │   │   ├── BuildConfig.class
│   │   │   │   │   ├── DeviceList$1.class
│   │   │   │   │   ├── DeviceList$2.class
│   │   │   │   │   ├── DeviceList$3.class
│   │   │   │   │   └── DeviceList.class
│   │   │   │   └── __content__.json
│   │   │   ├── instantRun
│   │   │   │   └── debug
│   │   │   │   ├── 0
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── support
│   │   │   │   │   │   ├── compat
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   ├── constraint
│   │   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   └── percent
│   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   └── R.class
│   │   │   │   │   └── app
│   │   │   │   │   └── akexorcist
│   │   │   │   │   ├── bluetoothspp
│   │   │   │   │   │   ├── AutoConnectActivity$1.class
│   │   │   │   │   │   ├── AutoConnectActivity$2.class
│   │   │   │   │   │   ├── AutoConnectActivity$3.class
│   │   │   │   │   │   ├── AutoConnectActivity$4.class
│   │   │   │   │   │   ├── AutoConnectActivity.class
│   │   │   │   │   │   ├── BuildConfig.class
│   │   │   │   │   │   ├── DeviceListActivity$1.class
│   │   │   │   │   │   ├── DeviceListActivity$2.class
│   │   │   │   │   │   ├── DeviceListActivity$3.class
│   │   │   │   │   │   ├── DeviceListActivity.class
│   │   │   │   │   │   ├── ListenerActivity$1.class
│   │   │   │   │   │   ├── ListenerActivity$2.class
│   │   │   │   │   │   ├── ListenerActivity$3.class
│   │   │   │   │   │   ├── ListenerActivity$4.class
│   │   │   │   │   │   ├── ListenerActivity$5.class
│   │   │   │   │   │   ├── ListenerActivity.class
│   │   │   │   │   │   ├── Main.class
│   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   ├── R$dimen.class
│   │   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   ├── R$layout.class
│   │   │   │   │   │   ├── R$menu.class
│   │   │   │   │   │   ├── R$string.class
│   │   │   │   │   │   ├── R$style.class
│   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   ├── R.class
│   │   │   │   │   │   ├── SimpleActivity$1.class
│   │   │   │   │   │   ├── SimpleActivity$2.class
│   │   │   │   │   │   ├── SimpleActivity.class
│   │   │   │   │   │   ├── TerminalActivity$1.class
│   │   │   │   │   │   ├── TerminalActivity$2.class
│   │   │   │   │   │   ├── TerminalActivity$3.class
│   │   │   │   │   │   └── TerminalActivity.class
│   │   │   │   │   └── bluetotohspp
│   │   │   │   │   └── library
│   │   │   │   │   ├── BluetoothSPP$1.class
│   │   │   │   │   ├── BluetoothSPP$2.class
│   │   │   │   │   ├── BluetoothSPP$3.class
│   │   │   │   │   ├── BluetoothSPP$AutoConnectionListener.class
│   │   │   │   │   ├── BluetoothSPP$BluetoothConnectionListener.class
│   │   │   │   │   ├── BluetoothSPP$BluetoothStateListener.class
│   │   │   │   │   ├── BluetoothSPP$OnDataReceivedListener.class
│   │   │   │   │   ├── BluetoothSPP.class
│   │   │   │   │   ├── BluetoothService$AcceptThread.class
│   │   │   │   │   ├── BluetoothService$ConnectThread.class
│   │   │   │   │   ├── BluetoothService$ConnectedThread.class
│   │   │   │   │   ├── BluetoothService.class
│   │   │   │   │   ├── BluetoothState.class
│   │   │   │   │   ├── BuildConfig.class
│   │   │   │   │   ├── DeviceList$1.class
│   │   │   │   │   ├── DeviceList$2.class
│   │   │   │   │   ├── DeviceList$3.class
│   │   │   │   │   ├── DeviceList.class
│   │   │   │   │   ├── R$dimen.class
│   │   │   │   │   ├── R$id.class
│   │   │   │   │   ├── R$layout.class
│   │   │   │   │   └── R.class
│   │   │   │   └── __content__.json
│   │   │   ├── instantRunDependenciesApk
│   │   │   │   └── debug
│   │   │   │   └── __content__.json
│   │   │   ├── instantRunSlicer
│   │   │   │   └── debug
│   │   │   │   ├── 0
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── support
│   │   │   │   │   │   └── compat
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── buildId.txt
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_0.class
│   │   │   │   ├── 1
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── support
│   │   │   │   │   │   └── percent
│   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── buildId.txt
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_1.class
│   │   │   │   ├── 2
│   │   │   │   │   ├── app
│   │   │   │   │   │   └── akexorcist
│   │   │   │   │   │   └── bluetotohspp
│   │   │   │   │   │   └── library
│   │   │   │   │   │   ├── BluetoothSPP$1.class
│   │   │   │   │   │   ├── BluetoothSPP$2.class
│   │   │   │   │   │   ├── BluetoothSPP$3.class
│   │   │   │   │   │   ├── BluetoothSPP$AutoConnectionListener.class
│   │   │   │   │   │   ├── BluetoothSPP$BluetoothConnectionListener.class
│   │   │   │   │   │   ├── BluetoothSPP$BluetoothStateListener.class
│   │   │   │   │   │   ├── BluetoothSPP$OnDataReceivedListener.class
│   │   │   │   │   │   ├── BluetoothSPP.class
│   │   │   │   │   │   ├── BluetoothService$AcceptThread.class
│   │   │   │   │   │   ├── BluetoothService$ConnectThread.class
│   │   │   │   │   │   ├── BluetoothService$ConnectedThread.class
│   │   │   │   │   │   ├── BluetoothService.class
│   │   │   │   │   │   ├── BluetoothState.class
│   │   │   │   │   │   ├── BuildConfig.class
│   │   │   │   │   │   ├── DeviceList$1.class
│   │   │   │   │   │   ├── DeviceList$2.class
│   │   │   │   │   │   ├── DeviceList$3.class
│   │   │   │   │   │   ├── DeviceList.class
│   │   │   │   │   │   ├── R$dimen.class
│   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   ├── R$layout.class
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── buildId.txt
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_2.class
│   │   │   │   ├── 3
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_3.class
│   │   │   │   ├── 4
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_4.class
│   │   │   │   ├── 5
│   │   │   │   │   ├── app
│   │   │   │   │   │   └── akexorcist
│   │   │   │   │   │   └── bluetoothspp
│   │   │   │   │   │   ├── AutoConnectActivity$1.class
│   │   │   │   │   │   ├── AutoConnectActivity$2.class
│   │   │   │   │   │   ├── AutoConnectActivity$3.class
│   │   │   │   │   │   ├── AutoConnectActivity$4.class
│   │   │   │   │   │   ├── AutoConnectActivity.class
│   │   │   │   │   │   ├── BuildConfig.class
│   │   │   │   │   │   ├── DeviceListActivity$1.class
│   │   │   │   │   │   ├── DeviceListActivity$2.class
│   │   │   │   │   │   ├── DeviceListActivity$3.class
│   │   │   │   │   │   ├── DeviceListActivity.class
│   │   │   │   │   │   ├── ListenerActivity$1.class
│   │   │   │   │   │   ├── ListenerActivity$2.class
│   │   │   │   │   │   ├── ListenerActivity$3.class
│   │   │   │   │   │   ├── ListenerActivity$4.class
│   │   │   │   │   │   ├── ListenerActivity$5.class
│   │   │   │   │   │   ├── ListenerActivity.class
│   │   │   │   │   │   ├── Main.class
│   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   ├── R$dimen.class
│   │   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   ├── R$layout.class
│   │   │   │   │   │   ├── R$menu.class
│   │   │   │   │   │   ├── R$string.class
│   │   │   │   │   │   ├── R$style.class
│   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   ├── R.class
│   │   │   │   │   │   ├── SimpleActivity$1.class
│   │   │   │   │   │   ├── SimpleActivity$2.class
│   │   │   │   │   │   ├── SimpleActivity.class
│   │   │   │   │   │   ├── TerminalActivity$1.class
│   │   │   │   │   │   ├── TerminalActivity$2.class
│   │   │   │   │   │   ├── TerminalActivity$3.class
│   │   │   │   │   │   └── TerminalActivity.class
│   │   │   │   │   ├── buildId.txt
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_5.class
│   │   │   │   ├── 6
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_6.class
│   │   │   │   ├── 7
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_7.class
│   │   │   │   ├── 8
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_8.class
│   │   │   │   ├── 9
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── support
│   │   │   │   │   │   └── constraint
│   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── buildId.txt
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_9.class
│   │   │   │   └── __content__.json
│   │   │   ├── instantRunSlicesApk
│   │   │   │   └── debug
│   │   │   │   └── __content__.json
│   │   │   ├── mergeJavaRes
│   │   │   │   └── debug
│   │   │   │   ├── 0.jar
│   │   │   │   └── __content__.json
│   │   │   └── mergeJniLibs
│   │   │   └── debug
│   │   │   └── __content__.json
│   │   └── outputs
│   │   ├── apk
│   │   │   └── debug
│   │   │   ├── app-debug.apk
│   │   │   └── output.json
│   │   └── logs
│   │   └── manifest-merger-debug-report.txt
│   ├── build.gradle
│   ├── proguard-rules.pro
│   └── src
│   ├── androidTest
│   │   └── java
│   │   └── app
│   │   └── akexorcist
│   │   └── bluetoothspp
│   │   └── ApplicationTest.java
│   └── main
│   ├── AndroidManifest.xml
│   ├── java
│   │   └── app
│   │   └── akexorcist
│   │   └── bluetoothspp
│   │   ├── AutoConnectActivity.java
│   │   ├── DeviceListActivity.java
│   │   ├── ListenerActivity.java
│   │   ├── Main.java
│   │   ├── SimpleActivity.java
│   │   └── TerminalActivity.java
│   └── res
│   ├── drawable-hdpi
│   │   └── ic_launcher.png
│   ├── drawable-mdpi
│   │   └── ic_launcher.png
│   ├── drawable-xhdpi
│   │   └── ic_launcher.png
│   ├── drawable-xxhdpi
│   │   └── ic_launcher.png
│   ├── layout
│   │   ├── activity_autoconnect.xml
│   │   ├── activity_devicelist.xml
│   │   ├── activity_listener.xml
│   │   ├── activity_simple.xml
│   │   ├── activity_terminal.xml
│   │   ├── device_layout_list.xml
│   │   ├── device_layout_text.xml
│   │   └── main.xml
│   ├── menu
│   │   ├── menu_connection.xml
│   │   ├── menu_device_list.xml
│   │   ├── menu_disconnection.xml
│   │   └── menu_terminal.xml
│   ├── values
│   │   ├── dimens.xml
│   │   ├── strings.xml
│   │   └── styles.xml
│   ├── values-v14
│   │   └── styles.xml
│   ├── values-v21
│   │   └── styles.xml
│   └── values-w820dp
│   └── dimens.xml
├── build
│   └── android-profile
│   ├── profile-2018-04-14-22-40-58-131.rawproto
│   ├── profile-2018-04-14-22-41-19-797.rawproto
│   ├── profile-2018-04-14-22-44-15-367.rawproto
│   ├── profile-2018-04-14-22-49-37-541.rawproto
│   ├── profile-2018-04-14-22-50-44-692.rawproto
│   ├── profile-2018-04-14-22-50-52-631.rawproto
│   ├── profile-2018-04-14-22-51-17-485.json
│   ├── profile-2018-04-14-22-51-17-485.rawproto
│   ├── profile-2018-04-14-22-51-33-693.json
│   ├── profile-2018-04-14-22-51-33-693.rawproto
│   ├── profile-2018-04-14-22-51-41-060.json
│   ├── profile-2018-04-14-22-51-41-060.rawproto
│   ├── profile-2018-04-14-23-01-53-499.json
│   ├── profile-2018-04-14-23-01-53-499.rawproto
│   ├── profile-2018-04-14-23-08-19-674.json
│   ├── profile-2018-04-14-23-08-19-674.rawproto
│   ├── profile-2018-04-14-23-11-41-228.json
│   ├── profile-2018-04-14-23-11-41-228.rawproto
│   ├── profile-2018-04-14-23-12-28-510.json
│   ├── profile-2018-04-14-23-12-28-510.rawproto
│   ├── profile-2018-04-14-23-12-46-578.json
│   ├── profile-2018-04-14-23-12-46-578.rawproto
│   ├── profile-2018-04-15-09-34-59-144.json
│   ├── profile-2018-04-15-09-34-59-144.rawproto
│   ├── profile-2018-04-15-09-35-23-999.json
│   ├── profile-2018-04-15-09-35-23-999.rawproto
│   ├── profile-2018-04-15-09-52-46-814.json
│   ├── profile-2018-04-15-09-52-46-814.rawproto
│   ├── profile-2018-04-15-09-54-30-476.json
│   ├── profile-2018-04-15-09-54-30-476.rawproto
│   ├── profile-2018-04-15-09-59-13-175.json
│   ├── profile-2018-04-15-09-59-13-175.rawproto
│   ├── profile-2018-04-15-10-05-57-666.json
│   ├── profile-2018-04-15-10-05-57-666.rawproto
│   ├── profile-2018-04-15-10-06-01-852.json
│   ├── profile-2018-04-15-10-06-01-852.rawproto
│   ├── profile-2018-04-15-10-10-20-573.json
│   ├── profile-2018-04-15-10-10-20-573.rawproto
│   ├── profile-2018-04-15-10-10-45-753.json
│   ├── profile-2018-04-15-10-10-45-753.rawproto
│   ├── profile-2018-04-15-10-12-15-943.json
│   ├── profile-2018-04-15-10-12-15-943.rawproto
│   ├── profile-2018-04-15-10-13-06-925.json
│   ├── profile-2018-04-15-10-13-06-925.rawproto
│   ├── profile-2018-04-15-10-23-56-118.json
│   ├── profile-2018-04-15-10-23-56-118.rawproto
│   ├── profile-2018-04-23-14-54-15-132.json
│   ├── profile-2018-04-23-14-54-15-132.rawproto
│   ├── profile-2018-04-23-14-55-00-575.json
│   ├── profile-2018-04-23-14-55-00-575.rawproto
│   ├── profile-2018-04-23-14-59-36-566.json
│   ├── profile-2018-04-23-14-59-36-566.rawproto
│   ├── profile-2018-04-23-14-59-47-271.json
│   ├── profile-2018-04-23-14-59-47-271.rawproto
│   ├── profile-2018-04-23-15-30-08-646.json
│   ├── profile-2018-04-23-15-30-08-646.rawproto
│   ├── profile-2018-04-23-15-30-18-325.json
│   ├── profile-2018-04-23-15-30-18-325.rawproto
│   ├── profile-2018-04-23-15-53-55-743.json
│   ├── profile-2018-04-23-15-53-55-743.rawproto
│   ├── profile-2018-04-23-15-54-32-417.json
│   ├── profile-2018-04-23-15-54-32-417.rawproto
│   ├── profile-2018-04-23-16-15-45-848.json
│   ├── profile-2018-04-23-16-15-45-848.rawproto
│   ├── profile-2018-04-23-16-24-53-396.json
│   ├── profile-2018-04-23-16-24-53-396.rawproto
│   ├── profile-2018-04-23-16-28-37-523.json
│   ├── profile-2018-04-23-16-28-37-523.rawproto
│   ├── profile-2018-05-05-09-16-45-852.json
│   ├── profile-2018-05-05-09-16-45-852.rawproto
│   ├── profile-2018-05-05-09-17-20-847.json
│   ├── profile-2018-05-05-09-17-20-847.rawproto
│   ├── profile-2018-05-05-09-33-17-895.json
│   ├── profile-2018-05-05-09-33-17-895.rawproto
│   ├── profile-2018-05-05-09-33-55-279.json
│   ├── profile-2018-05-05-09-33-55-279.rawproto
│   ├── profile-2018-05-05-09-34-27-063.json
│   ├── profile-2018-05-05-09-34-27-063.rawproto
│   ├── profile-2018-05-05-10-01-12-561.json
│   ├── profile-2018-05-05-10-01-12-561.rawproto
│   ├── profile-2018-05-05-10-35-53-996.json
│   ├── profile-2018-05-05-10-35-53-996.rawproto
│   ├── profile-2018-05-05-10-36-22-982.json
│   ├── profile-2018-05-05-10-36-22-982.rawproto
│   ├── profile-2018-05-05-10-46-34-073.json
│   ├── profile-2018-05-05-10-46-34-073.rawproto
│   ├── profile-2018-05-05-10-46-42-608.json
│   ├── profile-2018-05-05-10-46-42-608.rawproto
│   ├── profile-2018-05-05-10-47-01-833.json
│   ├── profile-2018-05-05-10-47-01-833.rawproto
│   ├── profile-2018-05-05-10-47-41-955.json
│   ├── profile-2018-05-05-10-47-41-955.rawproto
│   ├── profile-2018-05-05-10-48-51-037.json
│   ├── profile-2018-05-05-10-48-51-037.rawproto
│   ├── profile-2018-05-05-10-53-45-652.json
│   ├── profile-2018-05-05-10-53-45-652.rawproto
│   ├── profile-2018-05-05-10-54-03-104.json
│   ├── profile-2018-05-05-10-54-03-104.rawproto
│   ├── profile-2018-05-05-10-55-21-006.json
│   ├── profile-2018-05-05-10-55-21-006.rawproto
│   ├── profile-2018-05-05-10-55-35-195.json
│   ├── profile-2018-05-05-10-55-35-195.rawproto
│   ├── profile-2018-05-05-10-57-54-210.json
│   ├── profile-2018-05-05-10-57-54-210.rawproto
│   ├── profile-2018-05-05-10-58-52-067.json
│   ├── profile-2018-05-05-10-58-52-067.rawproto
│   ├── profile-2018-05-05-10-59-03-217.json
│   ├── profile-2018-05-05-10-59-03-217.rawproto
│   ├── profile-2018-05-05-11-03-23-580.json
│   ├── profile-2018-05-05-11-03-23-580.rawproto
│   ├── profile-2018-05-05-11-04-37-010.json
│   ├── profile-2018-05-05-11-04-37-010.rawproto
│   ├── profile-2018-05-05-11-06-36-702.json
│   ├── profile-2018-05-05-11-06-36-702.rawproto
│   ├── profile-2018-05-05-11-07-42-559.json
│   ├── profile-2018-05-05-11-07-42-559.rawproto
│   ├── profile-2018-05-05-11-08-04-610.json
│   ├── profile-2018-05-05-11-08-04-610.rawproto
│   ├── profile-2018-05-05-11-09-11-504.json
│   ├── profile-2018-05-05-11-09-11-504.rawproto
│   ├── profile-2018-05-05-11-09-39-420.json
│   ├── profile-2018-05-05-11-09-39-420.rawproto
│   ├── profile-2018-05-05-11-10-32-837.json
│   ├── profile-2018-05-05-11-10-32-837.rawproto
│   ├── profile-2018-05-05-11-11-58-383.json
│   ├── profile-2018-05-05-11-11-58-383.rawproto
│   ├── profile-2018-05-05-11-12-13-499.json
│   ├── profile-2018-05-05-11-12-13-499.rawproto
│   ├── profile-2018-05-05-11-29-27-370.json
│   ├── profile-2018-05-05-11-29-27-370.rawproto
│   ├── profile-2018-05-05-11-30-14-795.json
│   ├── profile-2018-05-05-11-30-14-795.rawproto
│   ├── profile-2018-05-05-11-30-53-319.json
│   ├── profile-2018-05-05-11-30-53-319.rawproto
│   ├── profile-2018-05-05-11-32-25-794.json
│   ├── profile-2018-05-05-11-32-25-794.rawproto
│   ├── profile-2018-05-05-11-32-38-002.json
│   ├── profile-2018-05-05-11-32-38-002.rawproto
│   ├── profile-2018-05-05-11-33-14-194.json
│   ├── profile-2018-05-05-11-33-14-194.rawproto
│   ├── profile-2018-05-05-11-40-38-015.json
│   ├── profile-2018-05-05-11-40-38-015.rawproto
│   ├── profile-2018-05-05-11-53-17-367.json
│   ├── profile-2018-05-05-11-53-17-367.rawproto
│   ├── profile-2018-05-05-11-54-53-622.json
│   ├── profile-2018-05-05-11-54-53-622.rawproto
│   ├── profile-2018-05-05-11-55-33-709.json
│   ├── profile-2018-05-05-11-55-33-709.rawproto
│   ├── profile-2018-05-05-11-56-30-240.json
│   ├── profile-2018-05-05-11-56-30-240.rawproto
│   ├── profile-2018-05-05-11-56-53-293.json
│   ├── profile-2018-05-05-11-56-53-293.rawproto
│   ├── profile-2018-05-05-11-57-07-025.json
│   ├── profile-2018-05-05-11-57-07-025.rawproto
│   ├── profile-2018-05-05-12-00-07-996.json
│   ├── profile-2018-05-05-12-00-07-996.rawproto
│   ├── profile-2018-05-05-12-17-53-758.json
│   ├── profile-2018-05-05-12-17-53-758.rawproto
│   ├── profile-2018-05-05-12-18-05-887.json
│   ├── profile-2018-05-05-12-18-05-887.rawproto
│   ├── profile-2018-05-05-12-22-15-347.json
│   ├── profile-2018-05-05-12-22-15-347.rawproto
│   ├── profile-2018-05-05-12-25-11-509.json
│   ├── profile-2018-05-05-12-25-11-509.rawproto
│   ├── profile-2018-05-06-09-05-41-063.json
│   ├── profile-2018-05-06-09-05-41-063.rawproto
│   ├── profile-2018-05-06-09-06-19-316.json
│   ├── profile-2018-05-06-09-06-19-316.rawproto
│   ├── profile-2018-05-06-09-08-08-560.json
│   ├── profile-2018-05-06-09-08-08-560.rawproto
│   ├── profile-2018-05-06-09-08-51-081.json
│   ├── profile-2018-05-06-09-08-51-081.rawproto
│   ├── profile-2018-05-06-09-10-05-784.json
│   ├── profile-2018-05-06-09-10-05-784.rawproto
│   ├── profile-2018-05-06-09-10-59-934.json
│   ├── profile-2018-05-06-09-10-59-934.rawproto
│   ├── profile-2018-05-06-09-11-23-672.json
│   ├── profile-2018-05-06-09-11-23-672.rawproto
│   ├── profile-2018-05-06-09-11-57-415.json
│   ├── profile-2018-05-06-09-11-57-415.rawproto
│   ├── profile-2018-05-06-09-12-30-269.json
│   ├── profile-2018-05-06-09-12-30-269.rawproto
│   ├── profile-2018-05-06-09-13-58-436.json
│   ├── profile-2018-05-06-09-13-58-436.rawproto
│   ├── profile-2018-05-06-09-14-41-540.json
│   ├── profile-2018-05-06-09-14-41-540.rawproto
│   ├── profile-2018-05-06-09-15-02-090.json
│   ├── profile-2018-05-06-09-15-02-090.rawproto
│   ├── profile-2018-05-06-09-17-12-738.json
│   ├── profile-2018-05-06-09-17-12-738.rawproto
│   ├── profile-2018-05-06-09-17-50-715.json
│   ├── profile-2018-05-06-09-17-50-715.rawproto
│   ├── profile-2018-05-06-09-24-30-661.json
│   ├── profile-2018-05-06-09-24-30-661.rawproto
│   ├── profile-2018-05-06-09-25-06-233.json
│   ├── profile-2018-05-06-09-25-06-233.rawproto
│   ├── profile-2018-05-06-09-28-27-346.json
│   ├── profile-2018-05-06-09-28-27-346.rawproto
│   ├── profile-2018-05-06-09-28-49-544.json
│   ├── profile-2018-05-06-09-28-49-544.rawproto
│   ├── profile-2018-05-06-09-29-29-808.json
│   ├── profile-2018-05-06-09-29-29-808.rawproto
│   ├── profile-2018-05-06-09-30-49-566.json
│   ├── profile-2018-05-06-09-30-49-566.rawproto
│   ├── profile-2018-05-06-09-31-09-213.json
│   ├── profile-2018-05-06-09-31-09-213.rawproto
│   ├── profile-2018-05-06-09-31-23-498.json
│   ├── profile-2018-05-06-09-31-23-498.rawproto
│   ├── profile-2018-05-06-09-31-34-127.json
│   ├── profile-2018-05-06-09-31-34-127.rawproto
│   ├── profile-2018-05-06-09-32-40-797.json
│   ├── profile-2018-05-06-09-32-40-797.rawproto
│   ├── profile-2018-05-06-09-34-14-038.json
│   ├── profile-2018-05-06-09-34-14-038.rawproto
│   ├── profile-2018-05-06-09-34-28-124.json
│   ├── profile-2018-05-06-09-34-28-124.rawproto
│   ├── profile-2018-05-06-09-34-51-674.json
│   ├── profile-2018-05-06-09-34-51-674.rawproto
│   ├── profile-2018-05-06-09-35-06-191.json
│   ├── profile-2018-05-06-09-35-06-191.rawproto
│   ├── profile-2018-05-06-09-35-29-779.json
│   ├── profile-2018-05-06-09-35-29-779.rawproto
│   ├── profile-2018-05-06-09-35-37-523.json
│   ├── profile-2018-05-06-09-35-37-523.rawproto
│   ├── profile-2018-05-06-09-35-45-126.json
│   ├── profile-2018-05-06-09-35-45-126.rawproto
│   ├── profile-2018-05-06-09-36-11-696.json
│   ├── profile-2018-05-06-09-36-11-696.rawproto
│   ├── profile-2018-05-07-09-34-31-946.json
│   ├── profile-2018-05-07-09-34-31-946.rawproto
│   ├── profile-2018-05-07-09-37-32-588.json
│   ├── profile-2018-05-07-09-37-32-588.rawproto
│   ├── profile-2018-05-07-09-38-51-164.json
│   ├── profile-2018-05-07-09-38-51-164.rawproto
│   ├── profile-2018-05-07-09-40-13-670.json
│   ├── profile-2018-05-07-09-40-13-670.rawproto
│   ├── profile-2018-05-07-09-41-15-115.json
│   ├── profile-2018-05-07-09-41-15-115.rawproto
│   ├── profile-2018-05-07-09-44-37-178.json
│   ├── profile-2018-05-07-09-44-37-178.rawproto
│   ├── profile-2018-05-07-09-48-10-153.json
│   ├── profile-2018-05-07-09-48-10-153.rawproto
│   ├── profile-2018-05-07-09-48-23-992.json
│   ├── profile-2018-05-07-09-48-23-992.rawproto
│   ├── profile-2018-05-07-09-49-18-599.json
│   ├── profile-2018-05-07-09-49-18-599.rawproto
│   ├── profile-2018-05-07-09-53-34-769.json
│   ├── profile-2018-05-07-09-53-34-769.rawproto
│   ├── profile-2018-05-14-13-56-28-425.json
│   ├── profile-2018-05-14-13-56-28-425.rawproto
│   ├── profile-2018-05-14-13-56-58-526.json
│   ├── profile-2018-05-14-13-56-58-526.rawproto
│   ├── profile-2018-05-14-15-08-22-249.json
│   ├── profile-2018-05-14-15-08-22-249.rawproto
│   ├── profile-2018-05-14-15-45-33-283.json
│   ├── profile-2018-05-14-15-45-33-283.rawproto
│   ├── profile-2018-05-14-15-46-19-926.json
│   ├── profile-2018-05-14-15-46-19-926.rawproto
│   ├── profile-2018-05-14-15-57-33-638.json
│   ├── profile-2018-05-14-15-57-33-638.rawproto
│   ├── profile-2018-05-14-15-57-49-140.json
│   ├── profile-2018-05-14-15-57-49-140.rawproto
│   ├── profile-2018-05-14-16-01-49-579.json
│   ├── profile-2018-05-14-16-01-49-579.rawproto
│   ├── profile-2018-05-14-16-13-33-838.json
│   ├── profile-2018-05-14-16-13-33-838.rawproto
│   ├── profile-2018-05-14-16-17-46-871.json
│   ├── profile-2018-05-14-16-17-46-871.rawproto
│   ├── profile-2018-05-14-16-19-25-400.json
│   ├── profile-2018-05-14-16-19-25-400.rawproto
│   ├── profile-2018-05-14-16-27-20-332.json
│   ├── profile-2018-05-14-16-27-20-332.rawproto
│   ├── profile-2018-05-14-16-27-44-188.json
│   ├── profile-2018-05-14-16-27-44-188.rawproto
│   ├── profile-2018-05-15-14-36-55-478.json
│   ├── profile-2018-05-15-14-36-55-478.rawproto
│   ├── profile-2018-05-15-14-37-07-848.json
│   ├── profile-2018-05-15-14-37-07-848.rawproto
│   ├── profile-2018-05-15-14-38-34-157.json
│   ├── profile-2018-05-15-14-38-34-157.rawproto
│   ├── profile-2018-05-15-14-52-24-013.json
│   ├── profile-2018-05-15-14-52-24-013.rawproto
│   ├── profile-2018-05-15-15-01-04-110.json
│   ├── profile-2018-05-15-15-01-04-110.rawproto
│   ├── profile-2018-05-15-15-01-39-884.json
│   ├── profile-2018-05-15-15-01-39-884.rawproto
│   ├── profile-2018-05-15-15-02-18-255.json
│   ├── profile-2018-05-15-15-02-18-255.rawproto
│   ├── profile-2018-05-15-15-02-50-507.json
│   ├── profile-2018-05-15-15-02-50-507.rawproto
│   ├── profile-2018-05-15-15-07-51-777.json
│   ├── profile-2018-05-15-15-07-51-777.rawproto
│   ├── profile-2018-05-15-15-08-33-456.json
│   ├── profile-2018-05-15-15-08-33-456.rawproto
│   ├── profile-2018-05-15-15-09-26-632.json
│   ├── profile-2018-05-15-15-09-26-632.rawproto
│   ├── profile-2018-05-15-15-10-00-442.json
│   ├── profile-2018-05-15-15-10-00-442.rawproto
│   ├── profile-2018-05-15-15-10-12-869.json
│   ├── profile-2018-05-15-15-10-12-869.rawproto
│   ├── profile-2018-05-15-15-12-25-614.json
│   ├── profile-2018-05-15-15-12-25-614.rawproto
│   ├── profile-2018-05-15-15-15-53-162.json
│   ├── profile-2018-05-15-15-15-53-162.rawproto
│   ├── profile-2018-05-15-15-16-24-357.json
│   ├── profile-2018-05-15-15-16-24-357.rawproto
│   ├── profile-2018-05-15-15-21-19-285.json
│   ├── profile-2018-05-15-15-21-19-285.rawproto
│   ├── profile-2018-05-15-15-21-31-497.json
│   ├── profile-2018-05-15-15-21-31-497.rawproto
│   ├── profile-2018-05-15-15-25-54-373.json
│   ├── profile-2018-05-15-15-25-54-373.rawproto
│   ├── profile-2018-05-15-15-27-48-379.json
│   ├── profile-2018-05-15-15-27-48-379.rawproto
│   ├── profile-2018-05-15-15-28-39-242.json
│   ├── profile-2018-05-15-15-28-39-242.rawproto
│   ├── profile-2018-05-15-15-29-36-412.json
│   ├── profile-2018-05-15-15-29-36-412.rawproto
│   ├── profile-2018-05-15-15-33-28-177.json
│   ├── profile-2018-05-15-15-33-28-177.rawproto
│   ├── profile-2018-05-15-15-33-48-586.json
│   ├── profile-2018-05-15-15-33-48-586.rawproto
│   ├── profile-2018-05-15-15-37-18-344.json
│   ├── profile-2018-05-15-15-37-18-344.rawproto
│   ├── profile-2018-05-15-15-38-08-817.json
│   ├── profile-2018-05-15-15-38-08-817.rawproto
│   ├── profile-2018-05-15-15-48-11-081.json
│   ├── profile-2018-05-15-15-48-11-081.rawproto
│   ├── profile-2018-05-15-15-48-23-411.json
│   ├── profile-2018-05-15-15-48-23-411.rawproto
│   ├── profile-2018-05-15-15-50-17-159.json
│   ├── profile-2018-05-15-15-50-17-159.rawproto
│   ├── profile-2018-05-15-15-50-27-794.json
│   ├── profile-2018-05-15-15-50-27-794.rawproto
│   ├── profile-2018-05-15-15-53-12-750.json
│   ├── profile-2018-05-15-15-53-12-750.rawproto
│   ├── profile-2018-05-15-15-53-20-860.json
│   ├── profile-2018-05-15-15-53-20-860.rawproto
│   ├── profile-2018-05-15-15-54-15-340.json
│   ├── profile-2018-05-15-15-54-15-340.rawproto
│   ├── profile-2018-05-15-15-54-24-081.json
│   ├── profile-2018-05-15-15-54-24-081.rawproto
│   ├── profile-2018-05-15-15-55-43-371.json
│   ├── profile-2018-05-15-15-55-43-371.rawproto
│   ├── profile-2018-05-15-15-55-52-042.json
│   ├── profile-2018-05-15-15-55-52-042.rawproto
│   ├── profile-2018-05-15-16-03-58-888.json
│   ├── profile-2018-05-15-16-03-58-888.rawproto
│   ├── profile-2018-05-15-16-04-32-195.json
│   ├── profile-2018-05-15-16-04-32-195.rawproto
│   ├── profile-2018-05-15-16-06-45-886.json
│   ├── profile-2018-05-15-16-06-45-886.rawproto
│   ├── profile-2018-05-15-16-07-41-417.json
│   ├── profile-2018-05-15-16-07-41-417.rawproto
│   ├── profile-2018-05-15-16-10-15-109.json
│   ├── profile-2018-05-15-16-10-15-109.rawproto
│   ├── profile-2018-05-15-16-10-30-058.json
│   ├── profile-2018-05-15-16-10-30-058.rawproto
│   ├── profile-2018-05-15-16-10-41-534.json
│   └── profile-2018-05-15-16-10-41-534.rawproto
├── build.gradle
├── gradle
│   └── wrapper
│   ├── gradle-wrapper.jar
│   └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── image
│   ├── 005.png
│   ├── 006.png
│   ├── 007.png
│   ├── 008.png
│   ├── 009.png
│   ├── 010.png
│   ├── BlueStick.png
│   ├── Connection.png
│   ├── Connection2.png
│   └── header.png
├── library
│   ├── build
│   │   ├── generated
│   │   │   ├── mockable-android-21.v3.jar
│   │   │   └── source
│   │   │   ├── buildConfig
│   │   │   │   ├── androidTest
│   │   │   │   │   └── debug
│   │   │   │   │   └── app
│   │   │   │   │   └── akexorcist
│   │   │   │   │   └── bluetotohspp
│   │   │   │   │   └── library
│   │   │   │   │   └── test
│   │   │   │   │   └── BuildConfig.java
│   │   │   │   └── debug
│   │   │   │   └── app
│   │   │   │   └── akexorcist
│   │   │   │   └── bluetotohspp
│   │   │   │   └── library
│   │   │   │   └── BuildConfig.java
│   │   │   └── r
│   │   │   ├── androidTest
│   │   │   │   └── debug
│   │   │   │   └── app
│   │   │   │   └── akexorcist
│   │   │   │   └── bluetotohspp
│   │   │   │   └── library
│   │   │   │   ├── R.java
│   │   │   │   └── test
│   │   │   │   └── R.java
│   │   │   └── debug
│   │   │   └── app
│   │   │   └── akexorcist
│   │   │   └── bluetotohspp
│   │   │   └── library
│   │   │   └── R.java
│   │   ├── intermediates
│   │   │   ├── attr
│   │   │   │   └── R.txt
│   │   │   ├── blame
│   │   │   │   └── res
│   │   │   │   └── androidTest
│   │   │   │   └── debug
│   │   │   │   ├── multi-v2
│   │   │   │   │   ├── debug.json
│   │   │   │   │   ├── values-sw600dp-v13.json
│   │   │   │   │   ├── values-sw720dp-land-v13.json
│   │   │   │   │   └── values.json
│   │   │   │   └── single
│   │   │   │   └── debug.json
│   │   │   ├── bundles
│   │   │   │   └── debug
│   │   │   │   ├── R.txt
│   │   │   │   └── res
│   │   │   │   ├── layout
│   │   │   │   │   ├── device_list.xml
│   │   │   │   │   └── device_name.xml
│   │   │   │   ├── values
│   │   │   │   │   └── values.xml
│   │   │   │   ├── values-sw600dp-v13
│   │   │   │   │   └── values-sw600dp-v13.xml
│   │   │   │   └── values-sw720dp-land-v13
│   │   │   │   └── values-sw720dp-land-v13.xml
│   │   │   ├── classes
│   │   │   │   └── debug
│   │   │   │   └── app
│   │   │   │   └── akexorcist
│   │   │   │   └── bluetotohspp
│   │   │   │   └── library
│   │   │   │   ├── BluetoothSPP$1.class
│   │   │   │   ├── BluetoothSPP$2.class
│   │   │   │   ├── BluetoothSPP$3.class
│   │   │   │   ├── BluetoothSPP$AutoConnectionListener.class
│   │   │   │   ├── BluetoothSPP$BluetoothConnectionListener.class
│   │   │   │   ├── BluetoothSPP$BluetoothStateListener.class
│   │   │   │   ├── BluetoothSPP$OnDataReceivedListener.class
│   │   │   │   ├── BluetoothSPP.class
│   │   │   │   ├── BluetoothService$AcceptThread.class
│   │   │   │   ├── BluetoothService$ConnectThread.class
│   │   │   │   ├── BluetoothService$ConnectedThread.class
│   │   │   │   ├── BluetoothService.class
│   │   │   │   ├── BluetoothState.class
│   │   │   │   ├── BuildConfig.class
│   │   │   │   ├── DeviceList$1.class
│   │   │   │   ├── DeviceList$2.class
│   │   │   │   ├── DeviceList$3.class
│   │   │   │   ├── DeviceList.class
│   │   │   │   ├── R$dimen.class
│   │   │   │   ├── R$id.class
│   │   │   │   ├── R$layout.class
│   │   │   │   └── R.class
│   │   │   ├── incremental
│   │   │   │   ├── compileDebugAidl
│   │   │   │   │   └── dependency.store
│   │   │   │   ├── compileDebugAndroidTestAidl
│   │   │   │   │   └── dependency.store
│   │   │   │   ├── debug-mergeJniLibs
│   │   │   │   │   └── merge-state
│   │   │   │   ├── mergeDebugAndroidTestResources
│   │   │   │   │   ├── compile-file-map.properties
│   │   │   │   │   ├── merged.dir
│   │   │   │   │   │   ├── values
│   │   │   │   │   │   │   └── values.xml
│   │   │   │   │   │   ├── values-sw600dp-v13
│   │   │   │   │   │   │   └── values-sw600dp-v13.xml
│   │   │   │   │   │   └── values-sw720dp-land-v13
│   │   │   │   │   │   └── values-sw720dp-land-v13.xml
│   │   │   │   │   └── merger.xml
│   │   │   │   ├── mergeDebugAssets
│   │   │   │   │   └── merger.xml
│   │   │   │   ├── mergeDebugJniLibFolders
│   │   │   │   │   └── merger.xml
│   │   │   │   ├── mergeDebugShaders
│   │   │   │   │   └── merger.xml
│   │   │   │   └── packageDebugResources
│   │   │   │   ├── compile-file-map.properties
│   │   │   │   ├── merged.dir
│   │   │   │   │   ├── values
│   │   │   │   │   │   └── values.xml
│   │   │   │   │   ├── values-sw600dp-v13
│   │   │   │   │   │   └── values-sw600dp-v13.xml
│   │   │   │   │   └── values-sw720dp-land-v13
│   │   │   │   │   └── values-sw720dp-land-v13.xml
│   │   │   │   └── merger.xml
│   │   │   ├── intermediate-jars
│   │   │   │   └── debug
│   │   │   │   ├── classes.jar
│   │   │   │   └── res.jar
│   │   │   ├── javaPrecompile
│   │   │   │   └── debug
│   │   │   │   └── annotationProcessors.json
│   │   │   ├── manifest
│   │   │   │   └── androidTest
│   │   │   │   └── debug
│   │   │   │   ├── AndroidManifest.xml
│   │   │   │   └── output.json
│   │   │   ├── manifests
│   │   │   │   ├── aapt
│   │   │   │   │   └── debug
│   │   │   │   │   ├── AndroidManifest.xml
│   │   │   │   │   └── output.json
│   │   │   │   └── full
│   │   │   │   └── debug
│   │   │   │   ├── AndroidManifest.xml
│   │   │   │   └── output.json
│   │   │   ├── res
│   │   │   │   ├── androidTest
│   │   │   │   │   └── debug
│   │   │   │   │   ├── output.json
│   │   │   │   │   └── resources-debugAndroidTest.ap_
│   │   │   │   ├── debug
│   │   │   │   │   └── output.json
│   │   │   │   ├── merged
│   │   │   │   │   └── androidTest
│   │   │   │   │   └── debug
│   │   │   │   │   ├── layout_device_list.xml.flat
│   │   │   │   │   ├── layout_device_name.xml.flat
│   │   │   │   │   ├── values-sw600dp-v13_values-sw600dp-v13.arsc.flat
│   │   │   │   │   ├── values-sw720dp-land-v13_values-sw720dp-land-v13.arsc.flat
│   │   │   │   │   └── values_values.arsc.flat
│   │   │   │   └── symbol-table-with-package
│   │   │   │   ├── androidTest
│   │   │   │   │   └── debug
│   │   │   │   │   └── package-aware-r.txt
│   │   │   │   └── debug
│   │   │   │   └── package-aware-r.txt
│   │   │   ├── symbols
│   │   │   │   └── androidTest
│   │   │   │   └── debug
│   │   │   │   └── R.txt
│   │   │   └── transforms
│   │   │   └── mergeJniLibs
│   │   │   └── debug
│   │   │   └── __content__.json
│   │   └── outputs
│   │   └── logs
│   │   └── manifest-merger-debug-report.txt
│   ├── build.gradle
│   ├── gradle.properties
│   ├── library.iml
│   ├── proguard-rules.pro
│   └── src
│   ├── androidTest
│   │   └── java
│   │   └── app
│   │   └── akexorcist
│   │   └── bluetotohspp
│   │   └── library
│   │   └── ApplicationTest.java
│   └── main
│   ├── AndroidManifest.xml
│   ├── java
│   │   └── app
│   │   └── akexorcist
│   │   └── bluetotohspp
│   │   └── library
│   │   ├── BluetoothSPP.java
│   │   ├── BluetoothService.java
│   │   ├── BluetoothState.java
│   │   └── DeviceList.java
│   └── res
│   ├── layout
│   │   ├── device_list.xml
│   │   └── device_name.xml
│   ├── values
│   │   └── dimens.xml
│   ├── values-sw600dp
│   │   └── dimens.xml
│   └── values-sw720dp-land
│   └── dimens.xml
├── local.properties
├── maven_push.gradle
└── settings.gradle

509 directories, 1207 files

标签:

实例下载地址

Android studio蓝牙遥控

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警