实例介绍
android Bluetooth 开发1之布局和权限、打开、关闭、搜索、允许搜索、查看、数据通信
【实例截图】
【核心代码】
SacnBluetooth-原稿
└── SacnBluetooth - 原稿
├── app
│ ├── app.iml
│ ├── build
│ │ ├── generated
│ │ │ └── source
│ │ │ ├── buildConfig
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── sacnbluetooth
│ │ │ │ │ └── test
│ │ │ │ │ └── BuildConfig.java
│ │ │ │ └── debug
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── sacnbluetooth
│ │ │ │ └── BuildConfig.java
│ │ │ └── r
│ │ │ ├── androidTest
│ │ │ │ └── debug
│ │ │ │ ├── android
│ │ │ │ │ ├── app
│ │ │ │ │ │ └── R.java
│ │ │ │ │ └── support
│ │ │ │ │ └── test
│ │ │ │ │ ├── espresso
│ │ │ │ │ │ ├── idling
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ └── R.java
│ │ │ │ │ ├── R.java
│ │ │ │ │ └── rule
│ │ │ │ │ └── R.java
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── sacnbluetooth
│ │ │ │ └── test
│ │ │ │ └── R.java
│ │ │ └── debug
│ │ │ ├── android
│ │ │ │ └── support
│ │ │ │ ├── compat
│ │ │ │ │ └── R.java
│ │ │ │ ├── constraint
│ │ │ │ │ └── R.java
│ │ │ │ ├── coreui
│ │ │ │ │ └── R.java
│ │ │ │ ├── coreutils
│ │ │ │ │ └── R.java
│ │ │ │ ├── fragment
│ │ │ │ │ └── R.java
│ │ │ │ ├── graphics
│ │ │ │ │ └── drawable
│ │ │ │ │ ├── animated
│ │ │ │ │ │ └── R.java
│ │ │ │ │ └── R.java
│ │ │ │ ├── mediacompat
│ │ │ │ │ └── R.java
│ │ │ │ ├── v4
│ │ │ │ │ └── R.java
│ │ │ │ └── v7
│ │ │ │ ├── appcompat
│ │ │ │ │ └── R.java
│ │ │ │ └── recyclerview
│ │ │ │ └── R.java
│ │ │ └── com
│ │ │ └── example
│ │ │ └── sacnbluetooth
│ │ │ └── R.java
│ │ ├── intermediates
│ │ │ ├── blame
│ │ │ │ └── res
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ └── multi
│ │ │ │ │ └── values.json
│ │ │ │ └── debug
│ │ │ │ ├── multi
│ │ │ │ │ ├── layout.json
│ │ │ │ │ ├── values-af.json
│ │ │ │ │ ├── values-am.json
│ │ │ │ │ ├── values-ar.json
│ │ │ │ │ ├── values-az.json
│ │ │ │ │ ├── values-be.json
│ │ │ │ │ ├── values-bg.json
│ │ │ │ │ ├── values-bn.json
│ │ │ │ │ ├── values-bs.json
│ │ │ │ │ ├── values-b+sr+Latn.json
│ │ │ │ │ ├── values-ca.json
│ │ │ │ │ ├── values-cs.json
│ │ │ │ │ ├── values-da.json
│ │ │ │ │ ├── values-de.json
│ │ │ │ │ ├── values-el.json
│ │ │ │ │ ├── values-en-rAU.json
│ │ │ │ │ ├── values-en-rGB.json
│ │ │ │ │ ├── values-en-rIN.json
│ │ │ │ │ ├── values-es.json
│ │ │ │ │ ├── values-es-rUS.json
│ │ │ │ │ ├── values-et.json
│ │ │ │ │ ├── values-eu.json
│ │ │ │ │ ├── values-fa.json
│ │ │ │ │ ├── values-fi.json
│ │ │ │ │ ├── values-fr.json
│ │ │ │ │ ├── values-fr-rCA.json
│ │ │ │ │ ├── values-gl.json
│ │ │ │ │ ├── values-gu.json
│ │ │ │ │ ├── values-h720dp-v13.json
│ │ │ │ │ ├── values-hdpi-v4.json
│ │ │ │ │ ├── values-hi.json
│ │ │ │ │ ├── values-hr.json
│ │ │ │ │ ├── values-hu.json
│ │ │ │ │ ├── values-hy.json
│ │ │ │ │ ├── values-in.json
│ │ │ │ │ ├── values-is.json
│ │ │ │ │ ├── values-it.json
│ │ │ │ │ ├── values-iw.json
│ │ │ │ │ ├── values-ja.json
│ │ │ │ │ ├── values.json
│ │ │ │ │ ├── values-ka.json
│ │ │ │ │ ├── values-kk.json
│ │ │ │ │ ├── values-km.json
│ │ │ │ │ ├── values-kn.json
│ │ │ │ │ ├── values-ko.json
│ │ │ │ │ ├── values-ky.json
│ │ │ │ │ ├── values-land.json
│ │ │ │ │ ├── values-large-v4.json
│ │ │ │ │ ├── values-ldltr-v21.json
│ │ │ │ │ ├── values-lo.json
│ │ │ │ │ ├── values-lt.json
│ │ │ │ │ ├── values-lv.json
│ │ │ │ │ ├── values-mk.json
│ │ │ │ │ ├── values-ml.json
│ │ │ │ │ ├── values-mn.json
│ │ │ │ │ ├── values-mr.json
│ │ │ │ │ ├── values-ms.json
│ │ │ │ │ ├── values-my.json
│ │ │ │ │ ├── values-nb.json
│ │ │ │ │ ├── values-ne.json
│ │ │ │ │ ├── values-night-v8.json
│ │ │ │ │ ├── values-nl.json
│ │ │ │ │ ├── values-pa.json
│ │ │ │ │ ├── values-pl.json
│ │ │ │ │ ├── values-port.json
│ │ │ │ │ ├── values-pt.json
│ │ │ │ │ ├── values-pt-rBR.json
│ │ │ │ │ ├── values-pt-rPT.json
│ │ │ │ │ ├── values-ro.json
│ │ │ │ │ ├── values-ru.json
│ │ │ │ │ ├── values-si.json
│ │ │ │ │ ├── values-sk.json
│ │ │ │ │ ├── values-sl.json
│ │ │ │ │ ├── values-sq.json
│ │ │ │ │ ├── values-sr.json
│ │ │ │ │ ├── values-sv.json
│ │ │ │ │ ├── values-sw600dp-v13.json
│ │ │ │ │ ├── values-sw.json
│ │ │ │ │ ├── values-ta.json
│ │ │ │ │ ├── values-te.json
│ │ │ │ │ ├── values-th.json
│ │ │ │ │ ├── values-tl.json
│ │ │ │ │ ├── values-tr.json
│ │ │ │ │ ├── values-uk.json
│ │ │ │ │ ├── values-ur.json
│ │ │ │ │ ├── values-uz.json
│ │ │ │ │ ├── values-v11.json
│ │ │ │ │ ├── values-v12.json
│ │ │ │ │ ├── values-v13.json
│ │ │ │ │ ├── values-v14.json
│ │ │ │ │ ├── values-v16.json
│ │ │ │ │ ├── values-v17.json
│ │ │ │ │ ├── values-v18.json
│ │ │ │ │ ├── values-v21.json
│ │ │ │ │ ├── values-v22.json
│ │ │ │ │ ├── values-v23.json
│ │ │ │ │ ├── values-v24.json
│ │ │ │ │ ├── values-v25.json
│ │ │ │ │ ├── values-vi.json
│ │ │ │ │ ├── values-xlarge-v4.json
│ │ │ │ │ ├── values-zh-rCN.json
│ │ │ │ │ ├── values-zh-rHK.json
│ │ │ │ │ ├── values-zh-rTW.json
│ │ │ │ │ └── values-zu.json
│ │ │ │ └── single
│ │ │ │ ├── anim.json
│ │ │ │ ├── color.json
│ │ │ │ ├── color-v11.json
│ │ │ │ ├── color-v23.json
│ │ │ │ ├── drawable-hdpi-v4.json
│ │ │ │ ├── drawable.json
│ │ │ │ ├── drawable-ldrtl-hdpi-v17.json
│ │ │ │ ├── drawable-ldrtl-mdpi-v17.json
│ │ │ │ ├── drawable-ldrtl-xhdpi-v17.json
│ │ │ │ ├── drawable-ldrtl-xxhdpi-v17.json
│ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17.json
│ │ │ │ ├── drawable-mdpi-v4.json
│ │ │ │ ├── drawable-v21.json
│ │ │ │ ├── drawable-v23.json
│ │ │ │ ├── drawable-xhdpi-v4.json
│ │ │ │ ├── drawable-xxhdpi-v4.json
│ │ │ │ ├── drawable-xxxhdpi-v4.json
│ │ │ │ ├── layout.json
│ │ │ │ ├── layout-v11.json
│ │ │ │ ├── layout-v16.json
│ │ │ │ ├── layout-v21.json
│ │ │ │ ├── mipmap-hdpi.json
│ │ │ │ ├── mipmap-hdpi-v4.json
│ │ │ │ ├── mipmap-mdpi.json
│ │ │ │ ├── mipmap-mdpi-v4.json
│ │ │ │ ├── mipmap-xhdpi.json
│ │ │ │ ├── mipmap-xhdpi-v4.json
│ │ │ │ ├── mipmap-xxhdpi.json
│ │ │ │ ├── mipmap-xxhdpi-v4.json
│ │ │ │ ├── mipmap-xxxhdpi.json
│ │ │ │ └── mipmap-xxxhdpi-v4.json
│ │ │ ├── classes
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ ├── android
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ └── support
│ │ │ │ │ │ └── test
│ │ │ │ │ │ ├── espresso
│ │ │ │ │ │ │ ├── idling
│ │ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── R.class
│ │ │ │ │ │ └── rule
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── sacnbluetooth
│ │ │ │ │ ├── ExampleInstrumentedTest.class
│ │ │ │ │ └── test
│ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ └── R.class
│ │ │ │ ├── debug
│ │ │ │ │ ├── android
│ │ │ │ │ │ └── support
│ │ │ │ │ │ ├── compat
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── constraint
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── coreui
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── coreutils
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── fragment
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── graphics
│ │ │ │ │ │ │ └── drawable
│ │ │ │ │ │ │ ├── animated
│ │ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── mediacompat
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── v4
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ └── v7
│ │ │ │ │ │ ├── appcompat
│ │ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ └── recyclerview
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── sacnbluetooth
│ │ │ │ │ ├── BluetoothChat$1.class
│ │ │ │ │ ├── BluetoothChat$2.class
│ │ │ │ │ ├── BluetoothChat$3.class
│ │ │ │ │ ├── BluetoothChat$4.class
│ │ │ │ │ ├── BluetoothChat$5.class
│ │ │ │ │ ├── BluetoothChat$ClientThread.class
│ │ │ │ │ ├── BluetoothChat$ReadThread.class
│ │ │ │ │ ├── BluetoothChat$ServerThread.class
│ │ │ │ │ ├── BluetoothChat.class
│ │ │ │ │ ├── BluetoothInit$1.class
│ │ │ │ │ ├── BluetoothInit$2.class
│ │ │ │ │ ├── BluetoothInit$3$1.class
│ │ │ │ │ ├── BluetoothInit$3.class
│ │ │ │ │ ├── BluetoothInit$4.class
│ │ │ │ │ ├── BluetoothInit$5.class
│ │ │ │ │ ├── BluetoothInit.class
│ │ │ │ │ ├── BluetoothMsg$ServerOrCilent.class
│ │ │ │ │ ├── BluetoothMsgAdapter$ViewHolder.class
│ │ │ │ │ ├── BluetoothMsgAdapter.class
│ │ │ │ │ ├── BluetoothMsg.class
│ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ ├── R$anim.class
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$bool.class
│ │ │ │ │ ├── R$color.class
│ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$integer.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$mipmap.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ ├── R.class
│ │ │ │ │ ├── SearchBluetoothDevice$1.class
│ │ │ │ │ ├── SearchBluetoothDevice$2.class
│ │ │ │ │ ├── SearchBluetoothDevice$DiscoveryBluetoothBroadcast.class
│ │ │ │ │ ├── SearchBluetoothDevice$searchButtonClick.class
│ │ │ │ │ └── SearchBluetoothDevice.class
│ │ │ │ └── test
│ │ │ │ └── debug
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── sacnbluetooth
│ │ │ │ └── ExampleUnitTest.class
│ │ │ ├── incremental
│ │ │ │ ├── compileDebugAidl
│ │ │ │ │ └── dependency.store
│ │ │ │ ├── compileDebugAndroidTestAidl
│ │ │ │ │ └── dependency.store
│ │ │ │ ├── mergeDebugAndroidTestResources
│ │ │ │ │ ├── compile-file-map.properties
│ │ │ │ │ ├── merged.dir
│ │ │ │ │ │ └── values
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugAssets
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugJniLibFolders
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugResources
│ │ │ │ │ ├── compile-file-map.properties
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugShaders
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── packageDebug
│ │ │ │ │ ├── dex-renamer-state.txt
│ │ │ │ │ ├── file-input-save-data.txt
│ │ │ │ │ └── zip-cache
│ │ │ │ │ └── E7hU4N9f6ru5xSKytOrig13BjIs=
│ │ │ │ └── packageInstantRunResourcesDebug
│ │ │ │ ├── dex-renamer-state.txt
│ │ │ │ ├── file-input-save-data.txt
│ │ │ │ └── zip-cache
│ │ │ │ └── E7hU4N9f6ru5xSKytOrig13BjIs=
│ │ │ ├── incremental-classes
│ │ │ │ └── debug
│ │ │ │ └── instant-run-bootstrap.jar
│ │ │ ├── incremental-runtime-classes
│ │ │ │ └── debug
│ │ │ │ └── instant-run.jar
│ │ │ ├── incremental-safeguard
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ └── tag.txt
│ │ │ │ └── debug
│ │ │ │ └── tag.txt
│ │ │ ├── incremental-verifier
│ │ │ │ └── debug
│ │ │ │ ├── android
│ │ │ │ │ └── support
│ │ │ │ │ ├── compat
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── constraint
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── coreui
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── coreutils
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── fragment
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── graphics
│ │ │ │ │ │ └── drawable
│ │ │ │ │ │ ├── animated
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── mediacompat
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── v4
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── v7
│ │ │ │ │ ├── appcompat
│ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── recyclerview
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ └── R.class
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── sacnbluetooth
│ │ │ │ ├── BluetoothChat$1.class
│ │ │ │ ├── BluetoothChat$2.class
│ │ │ │ ├── BluetoothChat$3.class
│ │ │ │ ├── BluetoothChat$4.class
│ │ │ │ ├── BluetoothChat$5.class
│ │ │ │ ├── BluetoothChat$ClientThread.class
│ │ │ │ ├── BluetoothChat$ReadThread.class
│ │ │ │ ├── BluetoothChat$ServerThread.class
│ │ │ │ ├── BluetoothChat.class
│ │ │ │ ├── BluetoothInit$1.class
│ │ │ │ ├── BluetoothInit$2.class
│ │ │ │ ├── BluetoothInit$3$1.class
│ │ │ │ ├── BluetoothInit$3.class
│ │ │ │ ├── BluetoothInit$4.class
│ │ │ │ ├── BluetoothInit$5.class
│ │ │ │ ├── BluetoothInit.class
│ │ │ │ ├── BluetoothMsg$ServerOrCilent.class
│ │ │ │ ├── BluetoothMsgAdapter$ViewHolder.class
│ │ │ │ ├── BluetoothMsgAdapter.class
│ │ │ │ ├── BluetoothMsg.class
│ │ │ │ ├── BuildConfig.class
│ │ │ │ ├── R$anim.class
│ │ │ │ ├── R$attr.class
│ │ │ │ ├── R$bool.class
│ │ │ │ ├── R$color.class
│ │ │ │ ├── R$dimen.class
│ │ │ │ ├── R$drawable.class
│ │ │ │ ├── R$id.class
│ │ │ │ ├── R$integer.class
│ │ │ │ ├── R$layout.class
│ │ │ │ ├── R$mipmap.class
│ │ │ │ ├── R$string.class
│ │ │ │ ├── R$styleable.class
│ │ │ │ ├── R$style.class
│ │ │ │ ├── R.class
│ │ │ │ ├── SearchBluetoothDevice$1.class
│ │ │ │ ├── SearchBluetoothDevice$2.class
│ │ │ │ ├── SearchBluetoothDevice$DiscoveryBluetoothBroadcast.class
│ │ │ │ ├── SearchBluetoothDevice$searchButtonClick.class
│ │ │ │ └── SearchBluetoothDevice.class
│ │ │ ├── instant-run-resources
│ │ │ │ └── resources-debug.ir.ap_
│ │ │ ├── instant-run-support
│ │ │ │ └── debug
│ │ │ │ ├── dependencies
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ ├── 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
│ │ │ ├── manifest
│ │ │ │ └── androidTest
│ │ │ │ └── debug
│ │ │ │ └── AndroidManifest.xml
│ │ │ ├── manifests
│ │ │ │ ├── full
│ │ │ │ │ └── debug
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ └── instant-run
│ │ │ │ └── debug
│ │ │ │ └── AndroidManifest.xml
│ │ │ ├── pre-dexed
│ │ │ │ └── debug
│ │ │ │ ├── classes_0e95114ecda745076b1ac13ff66e53a42e2f884f.jar
│ │ │ │ ├── classes_332f5db40a5017480a5212adf5a40158dd004e73.jar
│ │ │ │ ├── classes_4b47f009ebd69ea12ea4e225407c10c1a8bc9b47.jar
│ │ │ │ ├── classes_5f76408b9708c4fccf97652afec9c23ffb211cf9.jar
│ │ │ │ ├── classes_605ef90c4089c1335f8cc2bb13aa5d77ed908946.jar
│ │ │ │ ├── classes_89337c6d99037e5f7b0bca4be14a63326a353484.jar
│ │ │ │ ├── classes_8fd950006390d4cb64fdab96735463bd0d22e7c3.jar
│ │ │ │ ├── classes_93972c9538b81c901658f76bd59373492b166999.jar
│ │ │ │ ├── classes_bd69d18b46aafc9fe4bfc371924a657f5688ff7a.jar
│ │ │ │ ├── classes_d32ce9d142684cfca5b17044f087a13ba78991b3.jar
│ │ │ │ ├── classes_f2d8083463ab375e5d5b97a65ffeeb4d140c546d.jar
│ │ │ │ ├── constraint-layout-solver-1.0.2_b5f406b827ead410c17f918a750c1e6a6f24df17.jar
│ │ │ │ ├── debug_a2ff9573baaa301f0147259c5e583dada06422b9.jar
│ │ │ │ └── support-annotations-26.0.0-alpha1_7c35af4fd5974a221f3efbaf09b5d81b2a6ab1c5.jar
│ │ │ ├── res
│ │ │ │ ├── merged
│ │ │ │ │ ├── androidTest
│ │ │ │ │ │ └── debug
│ │ │ │ │ │ └── values
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ └── debug
│ │ │ │ │ ├── anim
│ │ │ │ │ │ ├── abc_fade_in.xml
│ │ │ │ │ │ ├── abc_fade_out.xml
│ │ │ │ │ │ ├── abc_grow_fade_in_from_bottom.xml
│ │ │ │ │ │ ├── abc_popup_enter.xml
│ │ │ │ │ │ ├── abc_popup_exit.xml
│ │ │ │ │ │ ├── abc_shrink_fade_out_from_bottom.xml
│ │ │ │ │ │ ├── abc_slide_in_bottom.xml
│ │ │ │ │ │ ├── abc_slide_in_top.xml
│ │ │ │ │ │ ├── abc_slide_out_bottom.xml
│ │ │ │ │ │ └── abc_slide_out_top.xml
│ │ │ │ │ ├── color
│ │ │ │ │ │ ├── abc_btn_colored_borderless_text_material.xml
│ │ │ │ │ │ ├── abc_btn_colored_text_material.xml
│ │ │ │ │ │ ├── abc_hint_foreground_material_dark.xml
│ │ │ │ │ │ ├── abc_hint_foreground_material_light.xml
│ │ │ │ │ │ ├── abc_primary_text_disable_only_material_dark.xml
│ │ │ │ │ │ ├── abc_primary_text_disable_only_material_light.xml
│ │ │ │ │ │ ├── abc_primary_text_material_dark.xml
│ │ │ │ │ │ ├── abc_primary_text_material_light.xml
│ │ │ │ │ │ ├── abc_search_url_text.xml
│ │ │ │ │ │ ├── abc_secondary_text_material_dark.xml
│ │ │ │ │ │ ├── abc_secondary_text_material_light.xml
│ │ │ │ │ │ ├── abc_tint_btn_checkable.xml
│ │ │ │ │ │ ├── abc_tint_default.xml
│ │ │ │ │ │ ├── abc_tint_edittext.xml
│ │ │ │ │ │ ├── abc_tint_seek_thumb.xml
│ │ │ │ │ │ ├── abc_tint_spinner.xml
│ │ │ │ │ │ ├── abc_tint_switch_thumb.xml
│ │ │ │ │ │ ├── abc_tint_switch_track.xml
│ │ │ │ │ │ ├── switch_thumb_material_dark.xml
│ │ │ │ │ │ └── switch_thumb_material_light.xml
│ │ │ │ │ ├── color-v11
│ │ │ │ │ │ ├── abc_background_cache_hint_selector_material_dark.xml
│ │ │ │ │ │ └── abc_background_cache_hint_selector_material_light.xml
│ │ │ │ │ ├── color-v23
│ │ │ │ │ │ ├── abc_btn_colored_borderless_text_material.xml
│ │ │ │ │ │ ├── abc_btn_colored_text_material.xml
│ │ │ │ │ │ ├── abc_color_highlight_material.xml
│ │ │ │ │ │ ├── abc_tint_btn_checkable.xml
│ │ │ │ │ │ ├── abc_tint_default.xml
│ │ │ │ │ │ ├── abc_tint_edittext.xml
│ │ │ │ │ │ ├── abc_tint_seek_thumb.xml
│ │ │ │ │ │ ├── abc_tint_spinner.xml
│ │ │ │ │ │ ├── abc_tint_switch_thumb.xml
│ │ │ │ │ │ └── abc_tint_switch_track.xml
│ │ │ │ │ ├── drawable
│ │ │ │ │ │ ├── abc_btn_borderless_material.xml
│ │ │ │ │ │ ├── abc_btn_check_material.xml
│ │ │ │ │ │ ├── abc_btn_colored_material.xml
│ │ │ │ │ │ ├── abc_btn_default_mtrl_shape.xml
│ │ │ │ │ │ ├── abc_btn_radio_material.xml
│ │ │ │ │ │ ├── abc_cab_background_internal_bg.xml
│ │ │ │ │ │ ├── abc_cab_background_top_material.xml
│ │ │ │ │ │ ├── abc_dialog_material_background.xml
│ │ │ │ │ │ ├── abc_edit_text_material.xml
│ │ │ │ │ │ ├── abc_ic_ab_back_material.xml
│ │ │ │ │ │ ├── abc_ic_arrow_drop_right_black_24dp.xml
│ │ │ │ │ │ ├── abc_ic_clear_material.xml
│ │ │ │ │ │ ├── abc_ic_go_search_api_material.xml
│ │ │ │ │ │ ├── abc_ic_menu_overflow_material.xml
│ │ │ │ │ │ ├── abc_ic_search_api_material.xml
│ │ │ │ │ │ ├── abc_ic_voice_search_api_material.xml
│ │ │ │ │ │ ├── abc_item_background_holo_dark.xml
│ │ │ │ │ │ ├── abc_item_background_holo_light.xml
│ │ │ │ │ │ ├── abc_list_selector_background_transition_holo_dark.xml
│ │ │ │ │ │ ├── abc_list_selector_background_transition_holo_light.xml
│ │ │ │ │ │ ├── abc_list_selector_holo_dark.xml
│ │ │ │ │ │ ├── abc_list_selector_holo_light.xml
│ │ │ │ │ │ ├── abc_ratingbar_indicator_material.xml
│ │ │ │ │ │ ├── abc_ratingbar_material.xml
│ │ │ │ │ │ ├── abc_ratingbar_small_material.xml
│ │ │ │ │ │ ├── abc_seekbar_thumb_material.xml
│ │ │ │ │ │ ├── abc_seekbar_tick_mark_material.xml
│ │ │ │ │ │ ├── abc_seekbar_track_material.xml
│ │ │ │ │ │ ├── abc_spinner_textfield_background_material.xml
│ │ │ │ │ │ ├── abc_switch_thumb_material.xml
│ │ │ │ │ │ ├── abc_tab_indicator_material.xml
│ │ │ │ │ │ ├── abc_text_cursor_material.xml
│ │ │ │ │ │ ├── abc_textfield_search_material.xml
│ │ │ │ │ │ ├── abc_vector_test.xml
│ │ │ │ │ │ ├── message_left.9.png
│ │ │ │ │ │ ├── message_right.9.png
│ │ │ │ │ │ ├── notification_bg_low.xml
│ │ │ │ │ │ ├── notification_bg.xml
│ │ │ │ │ │ ├── notification_icon_background.xml
│ │ │ │ │ │ └── notification_tile_bg.xml
│ │ │ │ │ ├── drawable-hdpi-v4
│ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png
│ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png
│ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png
│ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png
│ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png
│ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png
│ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png
│ │ │ │ │ │ ├── abc_ic_star_black_16dp.png
│ │ │ │ │ │ ├── abc_ic_star_black_36dp.png
│ │ │ │ │ │ ├── abc_ic_star_black_48dp.png
│ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png
│ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png
│ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png
│ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_list_focused_holo.9.png
│ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png
│ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png
│ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png
│ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png
│ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png
│ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png
│ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png
│ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png
│ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png
│ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png
│ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png
│ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png
│ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png
│ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png
│ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png
│ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png
│ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png
│ │ │ │ │ │ ├── notification_bg_low_normal.9.png
│ │ │ │ │ │ ├── notification_bg_low_pressed.9.png
│ │ │ │ │ │ ├── notification_bg_normal.9.png
│ │ │ │ │ │ ├── notification_bg_normal_pressed.9.png
│ │ │ │ │ │ └── notify_panel_notification_icon_bg.png
│ │ │ │ │ ├── drawable-ldrtl-hdpi-v17
│ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png
│ │ │ │ │ ├── drawable-ldrtl-mdpi-v17
│ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png
│ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17
│ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png
│ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17
│ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png
│ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17
│ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png
│ │ │ │ │ ├── drawable-mdpi-v4
│ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png
│ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png
│ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png
│ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png
│ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png
│ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png
│ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png
│ │ │ │ │ │ ├── abc_ic_star_black_16dp.png
│ │ │ │ │ │ ├── abc_ic_star_black_36dp.png
│ │ │ │ │ │ ├── abc_ic_star_black_48dp.png
│ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png
│ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png
│ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png
│ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_list_focused_holo.9.png
│ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png
│ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png
│ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png
│ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png
│ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png
│ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png
│ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png
│ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png
│ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png
│ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png
│ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png
│ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png
│ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png
│ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png
│ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png
│ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png
│ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png
│ │ │ │ │ │ ├── notification_bg_low_normal.9.png
│ │ │ │ │ │ ├── notification_bg_low_pressed.9.png
│ │ │ │ │ │ ├── notification_bg_normal.9.png
│ │ │ │ │ │ ├── notification_bg_normal_pressed.9.png
│ │ │ │ │ │ └── notify_panel_notification_icon_bg.png
│ │ │ │ │ ├── drawable-v21
│ │ │ │ │ │ ├── abc_action_bar_item_background_material.xml
│ │ │ │ │ │ ├── abc_btn_colored_material.xml
│ │ │ │ │ │ ├── abc_edit_text_material.xml
│ │ │ │ │ │ └── notification_action_background.xml
│ │ │ │ │ ├── drawable-v23
│ │ │ │ │ │ └── abc_control_background_material.xml
│ │ │ │ │ ├── drawable-xhdpi-v4
│ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png
│ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png
│ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png
│ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png
│ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png
│ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png
│ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png
│ │ │ │ │ │ ├── abc_ic_star_black_16dp.png
│ │ │ │ │ │ ├── abc_ic_star_black_36dp.png
│ │ │ │ │ │ ├── abc_ic_star_black_48dp.png
│ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png
│ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png
│ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png
│ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_list_focused_holo.9.png
│ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png
│ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png
│ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png
│ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png
│ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png
│ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png
│ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png
│ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png
│ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png
│ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png
│ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png
│ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png
│ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png
│ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png
│ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png
│ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png
│ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png
│ │ │ │ │ │ ├── notification_bg_low_normal.9.png
│ │ │ │ │ │ ├── notification_bg_low_pressed.9.png
│ │ │ │ │ │ ├── notification_bg_normal.9.png
│ │ │ │ │ │ ├── notification_bg_normal_pressed.9.png
│ │ │ │ │ │ └── notify_panel_notification_icon_bg.png
│ │ │ │ │ ├── drawable-xxhdpi-v4
│ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png
│ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png
│ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png
│ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png
│ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png
│ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png
│ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png
│ │ │ │ │ │ ├── abc_ic_star_black_16dp.png
│ │ │ │ │ │ ├── abc_ic_star_black_36dp.png
│ │ │ │ │ │ ├── abc_ic_star_black_48dp.png
│ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png
│ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png
│ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png
│ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_list_focused_holo.9.png
│ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png
│ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png
│ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png
│ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png
│ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png
│ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png
│ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png
│ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png
│ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png
│ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png
│ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png
│ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png
│ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png
│ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png
│ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png
│ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png
│ │ │ │ │ │ └── abc_text_select_handle_right_mtrl_light.png
│ │ │ │ │ ├── drawable-xxxhdpi-v4
│ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png
│ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png
│ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png
│ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png
│ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png
│ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png
│ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png
│ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png
│ │ │ │ │ │ ├── abc_ic_star_black_16dp.png
│ │ │ │ │ │ ├── abc_ic_star_black_36dp.png
│ │ │ │ │ │ ├── abc_ic_star_black_48dp.png
│ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png
│ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png
│ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png
│ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png
│ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png
│ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png
│ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png
│ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png
│ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png
│ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png
│ │ │ │ │ │ └── abc_text_select_handle_right_mtrl_light.png
│ │ │ │ │ ├── layout
│ │ │ │ │ │ ├── abc_action_bar_title_item.xml
│ │ │ │ │ │ ├── abc_action_bar_up_container.xml
│ │ │ │ │ │ ├── abc_action_bar_view_list_nav_layout.xml
│ │ │ │ │ │ ├── abc_action_menu_item_layout.xml
│ │ │ │ │ │ ├── abc_action_menu_layout.xml
│ │ │ │ │ │ ├── abc_action_mode_bar.xml
│ │ │ │ │ │ ├── abc_action_mode_close_item_material.xml
│ │ │ │ │ │ ├── abc_activity_chooser_view_list_item.xml
│ │ │ │ │ │ ├── abc_activity_chooser_view.xml
│ │ │ │ │ │ ├── abc_alert_dialog_button_bar_material.xml
│ │ │ │ │ │ ├── abc_alert_dialog_material.xml
│ │ │ │ │ │ ├── abc_alert_dialog_title_material.xml
│ │ │ │ │ │ ├── abc_dialog_title_material.xml
│ │ │ │ │ │ ├── abc_expanded_menu_layout.xml
│ │ │ │ │ │ ├── abc_list_menu_item_checkbox.xml
│ │ │ │ │ │ ├── abc_list_menu_item_icon.xml
│ │ │ │ │ │ ├── abc_list_menu_item_layout.xml
│ │ │ │ │ │ ├── abc_list_menu_item_radio.xml
│ │ │ │ │ │ ├── abc_popup_menu_header_item_layout.xml
│ │ │ │ │ │ ├── abc_popup_menu_item_layout.xml
│ │ │ │ │ │ ├── abc_screen_content_include.xml
│ │ │ │ │ │ ├── abc_screen_simple_overlay_action_mode.xml
│ │ │ │ │ │ ├── abc_screen_simple.xml
│ │ │ │ │ │ ├── abc_screen_toolbar.xml
│ │ │ │ │ │ ├── abc_search_dropdown_item_icons_2line.xml
│ │ │ │ │ │ ├── abc_search_view.xml
│ │ │ │ │ │ ├── abc_select_dialog_material.xml
│ │ │ │ │ │ ├── chat_layout.xml
│ │ │ │ │ │ ├── init_layout.xml
│ │ │ │ │ │ ├── msg_layout.xml
│ │ │ │ │ │ ├── notification_action_tombstone.xml
│ │ │ │ │ │ ├── notification_action.xml
│ │ │ │ │ │ ├── notification_template_custom_big.xml
│ │ │ │ │ │ ├── notification_template_icon_group.xml
│ │ │ │ │ │ ├── notification_template_lines_media.xml
│ │ │ │ │ │ ├── notification_template_media_custom.xml
│ │ │ │ │ │ ├── notification_template_media.xml
│ │ │ │ │ │ ├── notification_template_part_chronometer.xml
│ │ │ │ │ │ ├── notification_template_part_time.xml
│ │ │ │ │ │ ├── search_layout.xml
│ │ │ │ │ │ ├── select_dialog_item_material.xml
│ │ │ │ │ │ ├── select_dialog_multichoice_material.xml
│ │ │ │ │ │ ├── select_dialog_singlechoice_material.xml
│ │ │ │ │ │ └── support_simple_spinner_dropdown_item.xml
│ │ │ │ │ ├── layout-v11
│ │ │ │ │ │ ├── notification_media_action.xml
│ │ │ │ │ │ ├── notification_media_cancel_action.xml
│ │ │ │ │ │ ├── notification_template_big_media_custom.xml
│ │ │ │ │ │ ├── notification_template_big_media_narrow_custom.xml
│ │ │ │ │ │ ├── notification_template_big_media_narrow.xml
│ │ │ │ │ │ └── notification_template_big_media.xml
│ │ │ │ │ ├── layout-v16
│ │ │ │ │ │ └── notification_template_custom_big.xml
│ │ │ │ │ ├── layout-v21
│ │ │ │ │ │ ├── notification_action_tombstone.xml
│ │ │ │ │ │ ├── notification_action.xml
│ │ │ │ │ │ ├── notification_template_custom_big.xml
│ │ │ │ │ │ └── notification_template_icon_group.xml
│ │ │ │ │ ├── mipmap-hdpi
│ │ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ │ └── ic_launcher_round.png
│ │ │ │ │ ├── mipmap-hdpi-v4
│ │ │ │ │ │ └── myicon.jpg
│ │ │ │ │ ├── mipmap-mdpi
│ │ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ │ └── ic_launcher_round.png
│ │ │ │ │ ├── mipmap-mdpi-v4
│ │ │ │ │ │ └── myicon.jpg
│ │ │ │ │ ├── mipmap-xhdpi
│ │ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ │ └── ic_launcher_round.png
│ │ │ │ │ ├── mipmap-xhdpi-v4
│ │ │ │ │ │ └── myicon.jpg
│ │ │ │ │ ├── mipmap-xxhdpi
│ │ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ │ └── ic_launcher_round.png
│ │ │ │ │ ├── mipmap-xxhdpi-v4
│ │ │ │ │ │ └── myicon.jpg
│ │ │ │ │ ├── mipmap-xxxhdpi
│ │ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ │ └── ic_launcher_round.png
│ │ │ │ │ ├── mipmap-xxxhdpi-v4
│ │ │ │ │ │ └── myicon.jpg
│ │ │ │ │ ├── values
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ ├── values-af
│ │ │ │ │ │ └── values-af.xml
│ │ │ │ │ ├── values-am
│ │ │ │ │ │ └── values-am.xml
│ │ │ │ │ ├── values-ar
│ │ │ │ │ │ └── values-ar.xml
│ │ │ │ │ ├── values-az
│ │ │ │ │ │ └── values-az.xml
│ │ │ │ │ ├── values-be
│ │ │ │ │ │ └── values-be.xml
│ │ │ │ │ ├── values-bg
│ │ │ │ │ │ └── values-bg.xml
│ │ │ │ │ ├── values-bn
│ │ │ │ │ │ └── values-bn.xml
│ │ │ │ │ ├── values-bs
│ │ │ │ │ │ └── values-bs.xml
│ │ │ │ │ ├── values-b+sr+Latn
│ │ │ │ │ │ └── values-b+sr+Latn.xml
│ │ │ │ │ ├── values-ca
│ │ │ │ │ │ └── values-ca.xml
│ │ │ │ │ ├── values-cs
│ │ │ │ │ │ └── values-cs.xml
│ │ │ │ │ ├── values-da
│ │ │ │ │ │ └── values-da.xml
│ │ │ │ │ ├── values-de
│ │ │ │ │ │ └── values-de.xml
│ │ │ │ │ ├── values-el
│ │ │ │ │ │ └── values-el.xml
│ │ │ │ │ ├── values-en-rAU
│ │ │ │ │ │ └── values-en-rAU.xml
│ │ │ │ │ ├── values-en-rGB
│ │ │ │ │ │ └── values-en-rGB.xml
│ │ │ │ │ ├── values-en-rIN
│ │ │ │ │ │ └── values-en-rIN.xml
│ │ │ │ │ ├── values-es
│ │ │ │ │ │ └── values-es.xml
│ │ │ │ │ ├── values-es-rUS
│ │ │ │ │ │ └── values-es-rUS.xml
│ │ │ │ │ ├── values-et
│ │ │ │ │ │ └── values-et.xml
│ │ │ │ │ ├── values-eu
│ │ │ │ │ │ └── values-eu.xml
│ │ │ │ │ ├── values-fa
│ │ │ │ │ │ └── values-fa.xml
│ │ │ │ │ ├── values-fi
│ │ │ │ │ │ └── values-fi.xml
│ │ │ │ │ ├── values-fr
│ │ │ │ │ │ └── values-fr.xml
│ │ │ │ │ ├── values-fr-rCA
│ │ │ │ │ │ └── values-fr-rCA.xml
│ │ │ │ │ ├── values-gl
│ │ │ │ │ │ └── values-gl.xml
│ │ │ │ │ ├── values-gu
│ │ │ │ │ │ └── values-gu.xml
│ │ │ │ │ ├── values-h720dp-v13
│ │ │ │ │ │ └── values-h720dp-v13.xml
│ │ │ │ │ ├── values-hdpi-v4
│ │ │ │ │ │ └── values-hdpi-v4.xml
│ │ │ │ │ ├── values-hi
│ │ │ │ │ │ └── values-hi.xml
│ │ │ │ │ ├── values-hr
│ │ │ │ │ │ └── values-hr.xml
│ │ │ │ │ ├── values-hu
│ │ │ │ │ │ └── values-hu.xml
│ │ │ │ │ ├── values-hy
│ │ │ │ │ │ └── values-hy.xml
│ │ │ │ │ ├── values-in
│ │ │ │ │ │ └── values-in.xml
│ │ │ │ │ ├── values-is
│ │ │ │ │ │ └── values-is.xml
│ │ │ │ │ ├── values-it
│ │ │ │ │ │ └── values-it.xml
│ │ │ │ │ ├── values-iw
│ │ │ │ │ │ └── values-iw.xml
│ │ │ │ │ ├── values-ja
│ │ │ │ │ │ └── values-ja.xml
│ │ │ │ │ ├── values-ka
│ │ │ │ │ │ └── values-ka.xml
│ │ │ │ │ ├── values-kk
│ │ │ │ │ │ └── values-kk.xml
│ │ │ │ │ ├── values-km
│ │ │ │ │ │ └── values-km.xml
│ │ │ │ │ ├── values-kn
│ │ │ │ │ │ └── values-kn.xml
│ │ │ │ │ ├── values-ko
│ │ │ │ │ │ └── values-ko.xml
│ │ │ │ │ ├── values-ky
│ │ │ │ │ │ └── values-ky.xml
│ │ │ │ │ ├── values-land
│ │ │ │ │ │ └── values-land.xml
│ │ │ │ │ ├── values-large-v4
│ │ │ │ │ │ └── values-large-v4.xml
│ │ │ │ │ ├── values-ldltr-v21
│ │ │ │ │ │ └── values-ldltr-v21.xml
│ │ │ │ │ ├── values-lo
│ │ │ │ │ │ └── values-lo.xml
│ │ │ │ │ ├── values-lt
│ │ │ │ │ │ └── values-lt.xml
│ │ │ │ │ ├── values-lv
│ │ │ │ │ │ └── values-lv.xml
│ │ │ │ │ ├── values-mk
│ │ │ │ │ │ └── values-mk.xml
│ │ │ │ │ ├── values-ml
│ │ │ │ │ │ └── values-ml.xml
│ │ │ │ │ ├── values-mn
│ │ │ │ │ │ └── values-mn.xml
│ │ │ │ │ ├── values-mr
│ │ │ │ │ │ └── values-mr.xml
│ │ │ │ │ ├── values-ms
│ │ │ │ │ │ └── values-ms.xml
│ │ │ │ │ ├── values-my
│ │ │ │ │ │ └── values-my.xml
│ │ │ │ │ ├── values-nb
│ │ │ │ │ │ └── values-nb.xml
│ │ │ │ │ ├── values-ne
│ │ │ │ │ │ └── values-ne.xml
│ │ │ │ │ ├── values-night-v8
│ │ │ │ │ │ └── values-night-v8.xml
│ │ │ │ │ ├── values-nl
│ │ │ │ │ │ └── values-nl.xml
│ │ │ │ │ ├── values-pa
│ │ │ │ │ │ └── values-pa.xml
│ │ │ │ │ ├── values-pl
│ │ │ │ │ │ └── values-pl.xml
│ │ │ │ │ ├── values-port
│ │ │ │ │ │ └── values-port.xml
│ │ │ │ │ ├── values-pt
│ │ │ │ │ │ └── values-pt.xml
│ │ │ │ │ ├── values-pt-rBR
│ │ │ │ │ │ └── values-pt-rBR.xml
│ │ │ │ │ ├── values-pt-rPT
│ │ │ │ │ │ └── values-pt-rPT.xml
│ │ │ │ │ ├── values-ro
│ │ │ │ │ │ └── values-ro.xml
│ │ │ │ │ ├── values-ru
│ │ │ │ │ │ └── values-ru.xml
│ │ │ │ │ ├── values-si
│ │ │ │ │ │ └── values-si.xml
│ │ │ │ │ ├── values-sk
│ │ │ │ │ │ └── values-sk.xml
│ │ │ │ │ ├── values-sl
│ │ │ │ │ │ └── values-sl.xml
│ │ │ │ │ ├── values-sq
│ │ │ │ │ │ └── values-sq.xml
│ │ │ │ │ ├── values-sr
│ │ │ │ │ │ └── values-sr.xml
│ │ │ │ │ ├── values-sv
│ │ │ │ │ │ └── values-sv.xml
│ │ │ │ │ ├── values-sw
│ │ │ │ │ │ └── values-sw.xml
│ │ │ │ │ ├── values-sw600dp-v13
│ │ │ │ │ │ └── values-sw600dp-v13.xml
│ │ │ │ │ ├── values-ta
│ │ │ │ │ │ └── values-ta.xml
│ │ │ │ │ ├── values-te
│ │ │ │ │ │ └── values-te.xml
│ │ │ │ │ ├── values-th
│ │ │ │ │ │ └── values-th.xml
│ │ │ │ │ ├── values-tl
│ │ │ │ │ │ └── values-tl.xml
│ │ │ │ │ ├── values-tr
│ │ │ │ │ │ └── values-tr.xml
│ │ │ │ │ ├── values-uk
│ │ │ │ │ │ └── values-uk.xml
│ │ │ │ │ ├── values-ur
│ │ │ │ │ │ └── values-ur.xml
│ │ │ │ │ ├── values-uz
│ │ │ │ │ │ └── values-uz.xml
│ │ │ │ │ ├── values-v11
│ │ │ │ │ │ └── values-v11.xml
│ │ │ │ │ ├── values-v12
│ │ │ │ │ │ └── values-v12.xml
│ │ │ │ │ ├── values-v13
│ │ │ │ │ │ └── values-v13.xml
│ │ │ │ │ ├── values-v14
│ │ │ │ │ │ └── values-v14.xml
│ │ │ │ │ ├── values-v16
│ │ │ │ │ │ └── values-v16.xml
│ │ │ │ │ ├── values-v17
│ │ │ │ │ │ └── values-v17.xml
│ │ │ │ │ ├── values-v18
│ │ │ │ │ │ └── values-v18.xml
│ │ │ │ │ ├── values-v21
│ │ │ │ │ │ └── values-v21.xml
│ │ │ │ │ ├── values-v22
│ │ │ │ │ │ └── values-v22.xml
│ │ │ │ │ ├── values-v23
│ │ │ │ │ │ └── values-v23.xml
│ │ │ │ │ ├── values-v24
│ │ │ │ │ │ └── values-v24.xml
│ │ │ │ │ ├── values-v25
│ │ │ │ │ │ └── values-v25.xml
│ │ │ │ │ ├── values-vi
│ │ │ │ │ │ └── values-vi.xml
│ │ │ │ │ ├── values-xlarge-v4
│ │ │ │ │ │ └── values-xlarge-v4.xml
│ │ │ │ │ ├── values-zh-rCN
│ │ │ │ │ │ └── values-zh-rCN.xml
│ │ │ │ │ ├── values-zh-rHK
│ │ │ │ │ │ └── values-zh-rHK.xml
│ │ │ │ │ ├── values-zh-rTW
│ │ │ │ │ │ └── values-zh-rTW.xml
│ │ │ │ │ └── values-zu
│ │ │ │ │ └── values-zu.xml
│ │ │ │ ├── resources-debug-androidTest.ap_
│ │ │ │ └── resources-debug.ap_
│ │ │ ├── restart-dex
│ │ │ │ └── debug
│ │ │ │ └── build-info.xml
│ │ │ ├── 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
│ │ │ ├── symbols
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ └── R.txt
│ │ │ │ └── debug
│ │ │ │ └── R.txt
│ │ │ └── transforms
│ │ │ ├── dex
│ │ │ │ └── debug
│ │ │ │ └── folders
│ │ │ │ └── 1000
│ │ │ │ └── 1f
│ │ │ │ └── main
│ │ │ │ └── classes.dex
│ │ │ ├── instantRun
│ │ │ │ └── debug
│ │ │ │ └── folders
│ │ │ │ └── 1
│ │ │ │ └── 5
│ │ │ │ └── main
│ │ │ │ ├── android
│ │ │ │ │ └── support
│ │ │ │ │ ├── compat
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── constraint
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── coreui
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── coreutils
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── fragment
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── graphics
│ │ │ │ │ │ └── drawable
│ │ │ │ │ │ ├── animated
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── mediacompat
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── v4
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── v7
│ │ │ │ │ ├── appcompat
│ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── recyclerview
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ └── R.class
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── sacnbluetooth
│ │ │ │ ├── BluetoothChat$1.class
│ │ │ │ ├── BluetoothChat$2.class
│ │ │ │ ├── BluetoothChat$3.class
│ │ │ │ ├── BluetoothChat$4.class
│ │ │ │ ├── BluetoothChat$5.class
│ │ │ │ ├── BluetoothChat$ClientThread.class
│ │ │ │ ├── BluetoothChat$ReadThread.class
│ │ │ │ ├── BluetoothChat$ServerThread.class
│ │ │ │ ├── BluetoothChat.class
│ │ │ │ ├── BluetoothInit$1.class
│ │ │ │ ├── BluetoothInit$2.class
│ │ │ │ ├── BluetoothInit$3$1.class
│ │ │ │ ├── BluetoothInit$3.class
│ │ │ │ ├── BluetoothInit$4.class
│ │ │ │ ├── BluetoothInit$5.class
│ │ │ │ ├── BluetoothInit.class
│ │ │ │ ├── BluetoothMsg$ServerOrCilent.class
│ │ │ │ ├── BluetoothMsgAdapter$ViewHolder.class
│ │ │ │ ├── BluetoothMsgAdapter.class
│ │ │ │ ├── BluetoothMsg.class
│ │ │ │ ├── BuildConfig.class
│ │ │ │ ├── R$anim.class
│ │ │ │ ├── R$attr.class
│ │ │ │ ├── R$bool.class
│ │ │ │ ├── R$color.class
│ │ │ │ ├── R$dimen.class
│ │ │ │ ├── R$drawable.class
│ │ │ │ ├── R$id.class
│ │ │ │ ├── R$integer.class
│ │ │ │ ├── R$layout.class
│ │ │ │ ├── R$mipmap.class
│ │ │ │ ├── R$string.class
│ │ │ │ ├── R$styleable.class
│ │ │ │ ├── R$style.class
│ │ │ │ ├── R.class
│ │ │ │ ├── SearchBluetoothDevice$1.class
│ │ │ │ ├── SearchBluetoothDevice$2.class
│ │ │ │ ├── SearchBluetoothDevice$DiscoveryBluetoothBroadcast.class
│ │ │ │ ├── SearchBluetoothDevice$searchButtonClick.class
│ │ │ │ └── SearchBluetoothDevice.class
│ │ │ └── instantRunSlicer
│ │ │ └── debug
│ │ │ └── folders
│ │ │ └── 1
│ │ │ └── 5
│ │ │ ├── slice_0
│ │ │ │ ├── android
│ │ │ │ │ └── support
│ │ │ │ │ ├── compat
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── fragment
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── mediacompat
│ │ │ │ │ └── R.class
│ │ │ │ └── com
│ │ │ │ └── android
│ │ │ │ └── tools
│ │ │ │ └── fd
│ │ │ │ └── dummy
│ │ │ │ └── slice_0.class
│ │ │ ├── slice_1
│ │ │ │ └── com
│ │ │ │ └── android
│ │ │ │ └── tools
│ │ │ │ └── fd
│ │ │ │ └── dummy
│ │ │ │ └── slice_1.class
│ │ │ ├── slice_2
│ │ │ │ ├── android
│ │ │ │ │ └── support
│ │ │ │ │ ├── coreutils
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── v4
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── v7
│ │ │ │ │ └── appcompat
│ │ │ │ │ ├── R$anim.class
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$bool.class
│ │ │ │ │ ├── R$color.class
│ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$integer.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ └── R.class
│ │ │ │ ├── buildId.txt
│ │ │ │ └── com
│ │ │ │ ├── android
│ │ │ │ │ └── tools
│ │ │ │ │ └── fd
│ │ │ │ │ └── dummy
│ │ │ │ │ └── slice_2.class
│ │ │ │ └── example
│ │ │ │ └── sacnbluetooth
│ │ │ │ ├── BluetoothChat$1.class
│ │ │ │ ├── BluetoothChat$2.class
│ │ │ │ ├── BluetoothChat$3.class
│ │ │ │ ├── BluetoothChat$4.class
│ │ │ │ ├── BluetoothChat$5.class
│ │ │ │ ├── BluetoothChat$ClientThread.class
│ │ │ │ ├── BluetoothChat$ReadThread.class
│ │ │ │ ├── BluetoothChat$ServerThread.class
│ │ │ │ ├── BluetoothChat.class
│ │ │ │ ├── BluetoothInit$1.class
│ │ │ │ ├── BluetoothInit$2.class
│ │ │ │ ├── BluetoothInit$3$1.class
│ │ │ │ ├── BluetoothInit$3.class
│ │ │ │ ├── BluetoothInit$4.class
│ │ │ │ ├── BluetoothInit$5.class
│ │ │ │ ├── BluetoothInit.class
│ │ │ │ ├── BluetoothMsg$ServerOrCilent.class
│ │ │ │ ├── BluetoothMsgAdapter$ViewHolder.class
│ │ │ │ ├── BluetoothMsgAdapter.class
│ │ │ │ ├── BluetoothMsg.class
│ │ │ │ ├── BuildConfig.class
│ │ │ │ ├── R$anim.class
│ │ │ │ ├── R$attr.class
│ │ │ │ ├── R$bool.class
│ │ │ │ ├── R$color.class
│ │ │ │ ├── R$dimen.class
│ │ │ │ ├── R$drawable.class
│ │ │ │ ├── R$id.class
│ │ │ │ ├── R$integer.class
│ │ │ │ ├── R$layout.class
│ │ │ │ ├── R$mipmap.class
│ │ │ │ ├── R$string.class
│ │ │ │ ├── R$styleable.class
│ │ │ │ ├── R$style.class
│ │ │ │ ├── R.class
│ │ │ │ ├── SearchBluetoothDevice$1.class
│ │ │ │ ├── SearchBluetoothDevice$2.class
│ │ │ │ ├── SearchBluetoothDevice$DiscoveryBluetoothBroadcast.class
│ │ │ │ ├── SearchBluetoothDevice$searchButtonClick.class
│ │ │ │ └── SearchBluetoothDevice.class
│ │ │ ├── slice_3
│ │ │ │ ├── android
│ │ │ │ │ └── support
│ │ │ │ │ └── graphics
│ │ │ │ │ └── drawable
│ │ │ │ │ └── R.class
│ │ │ │ └── com
│ │ │ │ └── android
│ │ │ │ └── tools
│ │ │ │ └── fd
│ │ │ │ └── dummy
│ │ │ │ └── slice_3.class
│ │ │ ├── slice_4
│ │ │ │ └── com
│ │ │ │ └── android
│ │ │ │ └── tools
│ │ │ │ └── fd
│ │ │ │ └── dummy
│ │ │ │ └── slice_4.class
│ │ │ ├── slice_5
│ │ │ │ └── com
│ │ │ │ └── android
│ │ │ │ └── tools
│ │ │ │ └── fd
│ │ │ │ └── dummy
│ │ │ │ └── slice_5.class
│ │ │ ├── slice_6
│ │ │ │ └── com
│ │ │ │ └── android
│ │ │ │ └── tools
│ │ │ │ └── fd
│ │ │ │ └── dummy
│ │ │ │ └── slice_6.class
│ │ │ ├── slice_7
│ │ │ │ ├── android
│ │ │ │ │ └── support
│ │ │ │ │ ├── coreui
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── v7
│ │ │ │ │ └── recyclerview
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ └── R.class
│ │ │ │ ├── buildId.txt
│ │ │ │ └── com
│ │ │ │ └── android
│ │ │ │ └── tools
│ │ │ │ └── fd
│ │ │ │ └── dummy
│ │ │ │ └── slice_7.class
│ │ │ ├── slice_8
│ │ │ │ ├── android
│ │ │ │ │ └── support
│ │ │ │ │ └── graphics
│ │ │ │ │ └── drawable
│ │ │ │ │ └── animated
│ │ │ │ │ └── R.class
│ │ │ │ └── com
│ │ │ │ └── android
│ │ │ │ └── tools
│ │ │ │ └── fd
│ │ │ │ └── dummy
│ │ │ │ └── slice_8.class
│ │ │ └── slice_9
│ │ │ ├── android
│ │ │ │ └── support
│ │ │ │ └── constraint
│ │ │ │ ├── R$attr.class
│ │ │ │ ├── R$id.class
│ │ │ │ ├── R$styleable.class
│ │ │ │ └── R.class
│ │ │ ├── buildId.txt
│ │ │ └── com
│ │ │ └── android
│ │ │ └── tools
│ │ │ └── fd
│ │ │ └── dummy
│ │ │ └── slice_9.class
│ │ ├── outputs
│ │ │ ├── apk
│ │ │ │ └── app-debug.apk
│ │ │ └── logs
│ │ │ └── manifest-merger-debug-report.txt
│ │ └── tmp
│ │ └── expandedArchives
│ │ └── classes.jar_4pucbah56nhk367qj756k7r8q
│ │ └── android
│ │ └── support
│ │ └── v7
│ │ ├── recyclerview
│ │ │ └── BuildConfig.class
│ │ ├── util
│ │ │ ├── AsyncListUtil$1.class
│ │ │ ├── AsyncListUtil$2.class
│ │ │ ├── AsyncListUtil$DataCallback.class
│ │ │ ├── AsyncListUtil$ViewCallback.class
│ │ │ ├── AsyncListUtil.class
│ │ │ ├── BatchingListUpdateCallback.class
│ │ │ ├── DiffUtil$1.class
│ │ │ ├── DiffUtil$Callback.class
│ │ │ ├── DiffUtil$DiffResult$1.class
│ │ │ ├── DiffUtil$DiffResult.class
│ │ │ ├── DiffUtil$PostponedUpdate.class
│ │ │ ├── DiffUtil$Range.class
│ │ │ ├── DiffUtil$Snake.class
│ │ │ ├── DiffUtil.class
│ │ │ ├── ListUpdateCallback.class
│ │ │ ├── MessageThreadUtil$1$1.class
│ │ │ ├── MessageThreadUtil$1.class
│ │ │ ├── MessageThreadUtil$2$1.class
│ │ │ ├── MessageThreadUtil$2.class
│ │ │ ├── MessageThreadUtil$MessageQueue.class
│ │ │ ├── MessageThreadUtil$SyncQueueItem.class
│ │ │ ├── MessageThreadUtil.class
│ │ │ ├── SortedList$BatchedCallback.class
│ │ │ ├── SortedList$Callback.class
│ │ │ ├── SortedList.class
│ │ │ ├── ThreadUtil$BackgroundCallback.class
│ │ │ ├── ThreadUtil$MainThreadCallback.class
│ │ │ ├── ThreadUtil.class
│ │ │ ├── TileList$Tile.class
│ │ │ └── TileList.class
│ │ └── widget
│ │ ├── AdapterHelper$Callback.class
│ │ ├── AdapterHelper$UpdateOp.class
│ │ ├── AdapterHelper.class
│ │ ├── ChildHelper$Bucket.class
│ │ ├── ChildHelper$Callback.class
│ │ ├── ChildHelper.class
│ │ ├── DefaultItemAnimator$1.class
│ │ ├── DefaultItemAnimator$2.class
│ │ ├── DefaultItemAnimator$3.class
│ │ ├── DefaultItemAnimator$4.class
│ │ ├── DefaultItemAnimator$5.class
│ │ ├── DefaultItemAnimator$6.class
│ │ ├── DefaultItemAnimator$7.class
│ │ ├── DefaultItemAnimator$8.class
│ │ ├── DefaultItemAnimator$ChangeInfo.class
│ │ ├── DefaultItemAnimator$MoveInfo.class
│ │ ├── DefaultItemAnimator.class
│ │ ├── DividerItemDecoration.class
│ │ ├── FastScroller$1.class
│ │ ├── FastScroller$2.class
│ │ ├── FastScroller$AnimatorListener.class
│ │ ├── FastScroller$AnimatorUpdater.class
│ │ ├── FastScroller.class
│ │ ├── GapWorker$1.class
│ │ ├── GapWorker$LayoutPrefetchRegistryImpl.class
│ │ ├── GapWorker$Task.class
│ │ ├── GapWorker.class
│ │ ├── GridLayoutManager$DefaultSpanSizeLookup.class
│ │ ├── GridLayoutManager$LayoutParams.class
│ │ ├── GridLayoutManager$SpanSizeLookup.class
│ │ ├── GridLayoutManager.class
│ │ ├── helper
│ │ │ ├── ItemTouchHelper$1.class
│ │ │ ├── ItemTouchHelper$2.class
│ │ │ ├── ItemTouchHelper$3.class
│ │ │ ├── ItemTouchHelper$4.class
│ │ │ ├── ItemTouchHelper$5.class
│ │ │ ├── ItemTouchHelper$Callback$1.class
│ │ │ ├── ItemTouchHelper$Callback$2.class
│ │ │ ├── ItemTouchHelper$Callback.class
│ │ │ ├── ItemTouchHelper$ItemTouchHelperGestureListener.class
│ │ │ ├── ItemTouchHelper$RecoverAnimation$1.class
│ │ │ ├── ItemTouchHelper$RecoverAnimation.class
│ │ │ ├── ItemTouchHelper$SimpleCallback.class
│ │ │ ├── ItemTouchHelper$ViewDropHandler.class
│ │ │ ├── ItemTouchHelper.class
│ │ │ ├── ItemTouchUIUtil.class
│ │ │ ├── ItemTouchUIUtilImpl$Gingerbread.class
│ │ │ ├── ItemTouchUIUtilImpl$Honeycomb.class
│ │ │ ├── ItemTouchUIUtilImpl$Lollipop.class
│ │ │ └── ItemTouchUIUtilImpl.class
│ │ ├── LayoutState.class
│ │ ├── LinearLayoutManager$AnchorInfo.class
│ │ ├── LinearLayoutManager$LayoutChunkResult.class
│ │ ├── LinearLayoutManager$LayoutState.class
│ │ ├── LinearLayoutManager$SavedState$1.class
│ │ ├── LinearLayoutManager$SavedState.class
│ │ ├── LinearLayoutManager.class
│ │ ├── LinearSmoothScroller.class
│ │ ├── LinearSnapHelper.class
│ │ ├── OpReorderer$Callback.class
│ │ ├── OpReorderer.class
│ │ ├── OrientationHelper$1.class
│ │ ├── OrientationHelper$2.class
│ │ ├── OrientationHelper.class
│ │ ├── PagerSnapHelper$1.class
│ │ ├── PagerSnapHelper.class
│ │ ├── PositionMap$ContainerHelpers.class
│ │ ├── PositionMap.class
│ │ ├── RecyclerView$1.class
│ │ ├── RecyclerView$2.class
│ │ ├── RecyclerView$3.class
│ │ ├── RecyclerView$4.class
│ │ ├── RecyclerView$5.class
│ │ ├── RecyclerView$6.class
│ │ ├── RecyclerView$Adapter.class
│ │ ├── RecyclerView$AdapterDataObservable.class
│ │ ├── RecyclerView$AdapterDataObserver.class
│ │ ├── RecyclerView$ChildDrawingOrderCallback.class
│ │ ├── RecyclerView$ItemAnimator$AdapterChanges.class
│ │ ├── RecyclerView$ItemAnimator$ItemAnimatorFinishedListener.class
│ │ ├── RecyclerView$ItemAnimator$ItemAnimatorListener.class
│ │ ├── RecyclerView$ItemAnimator$ItemHolderInfo.class
│ │ ├── RecyclerView$ItemAnimator.class
│ │ ├── RecyclerView$ItemAnimatorRestoreListener.class
│ │ ├── RecyclerView$ItemDecoration.class
│ │ ├── RecyclerView$LayoutManager$1.class
│ │ ├── RecyclerView$LayoutManager$2.class
│ │ ├── RecyclerView$LayoutManager$LayoutPrefetchRegistry.class
│ │ ├── RecyclerView$LayoutManager$Properties.class
│ │ ├── RecyclerView$LayoutManager.class
│ │ ├── RecyclerView$LayoutParams.class
│ │ ├── RecyclerView$OnChildAttachStateChangeListener.class
│ │ ├── RecyclerView$OnFlingListener.class
│ │ ├── RecyclerView$OnItemTouchListener.class
│ │ ├── RecyclerView$OnScrollListener.class
│ │ ├── RecyclerView$RecycledViewPool$ScrapData.class
│ │ ├── RecyclerView$RecycledViewPool.class
│ │ ├── RecyclerView$Recycler.class
│ │ ├── RecyclerView$RecyclerListener.class
│ │ ├── RecyclerView$RecyclerViewDataObserver.class
│ │ ├── RecyclerView$SavedState$1.class
│ │ ├── RecyclerView$SavedState.class
│ │ ├── RecyclerView$SimpleOnItemTouchListener.class
│ │ ├── RecyclerView$SmoothScroller$Action.class
│ │ ├── RecyclerView$SmoothScroller$ScrollVectorProvider.class
│ │ ├── RecyclerView$SmoothScroller.class
│ │ ├── RecyclerView$State.class
│ │ ├── RecyclerView$ViewCacheExtension.class
│ │ ├── RecyclerView$ViewFlinger.class
│ │ ├── RecyclerView$ViewHolder.class
│ │ ├── RecyclerViewAccessibilityDelegate$ItemDelegate.class
│ │ ├── RecyclerViewAccessibilityDelegate.class
│ │ ├── RecyclerView.class
│ │ ├── ScrollbarHelper.class
│ │ ├── SimpleItemAnimator.class
│ │ ├── SnapHelper$1.class
│ │ ├── SnapHelper$2.class
│ │ ├── SnapHelper.class
│ │ ├── StaggeredGridLayoutManager$1.class
│ │ ├── StaggeredGridLayoutManager$AnchorInfo.class
│ │ ├── StaggeredGridLayoutManager$LayoutParams.class
│ │ ├── StaggeredGridLayoutManager$LazySpanLookup$FullSpanItem$1.class
│ │ ├── StaggeredGridLayoutManager$LazySpanLookup$FullSpanItem.class
│ │ ├── StaggeredGridLayoutManager$LazySpanLookup.class
│ │ ├── StaggeredGridLayoutManager$SavedState$1.class
│ │ ├── StaggeredGridLayoutManager$SavedState.class
│ │ ├── StaggeredGridLayoutManager$Span.class
│ │ ├── StaggeredGridLayoutManager.class
│ │ ├── util
│ │ │ └── SortedListAdapterCallback.class
│ │ ├── ViewBoundsCheck$BoundFlags.class
│ │ ├── ViewBoundsCheck$Callback.class
│ │ ├── ViewBoundsCheck$ViewBounds.class
│ │ ├── ViewBoundsCheck.class
│ │ ├── ViewInfoStore$InfoRecord.class
│ │ ├── ViewInfoStore$ProcessCallback.class
│ │ └── ViewInfoStore.class
│ ├── build.gradle
│ ├── libs
│ │ ├── armeabi
│ │ │ ├── libbdEASRAndroid.v1.9.14..so
│ │ │ ├── libbd_easr_s1_merge_normal_20151216.dat.so
│ │ │ └── libBDVoiceRecognitionClient_MFE_V1_s2.so
│ │ └── VoiceRecognition-2.1.20.jar
│ ├── proguard-rules.pro
│ └── src
│ ├── androidTest
│ │ └── java
│ │ └── com
│ │ └── example
│ │ └── sacnbluetooth
│ │ └── ExampleInstrumentedTest.java
│ ├── main
│ │ ├── AndroidManifest.xml
│ │ ├── java
│ │ │ └── com
│ │ │ └── example
│ │ │ └── sacnbluetooth
│ │ │ ├── BluetoothChat.java
│ │ │ ├── BluetoothInit.java
│ │ │ ├── BluetoothMsgAdapter.java
│ │ │ ├── BluetoothMsg.java
│ │ │ ├── Interface.java
│ │ │ ├── MainActivity.java
│ │ │ └── SearchBluetoothDevice.java
│ │ └── res
│ │ ├── drawable
│ │ │ ├── message_left.9.png
│ │ │ └── message_right.9.png
│ │ ├── layout
│ │ │ ├── chat_layout.xml
│ │ │ ├── init_layout.xml
│ │ │ ├── msg_layout.xml
│ │ │ └── search_layout.xml
│ │ ├── mipmap-hdpi
│ │ │ ├── ic_launcher.png
│ │ │ ├── ic_launcher_round.png
│ │ │ └── myicon.jpg
│ │ ├── mipmap-mdpi
│ │ │ ├── ic_launcher.png
│ │ │ ├── ic_launcher_round.png
│ │ │ └── myicon.jpg
│ │ ├── mipmap-xhdpi
│ │ │ ├── ic_launcher.png
│ │ │ ├── ic_launcher_round.png
│ │ │ └── myicon.jpg
│ │ ├── mipmap-xxhdpi
│ │ │ ├── ic_launcher.png
│ │ │ ├── ic_launcher_round.png
│ │ │ └── myicon.jpg
│ │ ├── mipmap-xxxhdpi
│ │ │ ├── ic_launcher.png
│ │ │ ├── ic_launcher_round.png
│ │ │ └── myicon.jpg
│ │ └── values
│ │ ├── colors.xml
│ │ ├── strings.xml
│ │ └── styles.xml
│ └── test
│ └── java
│ └── com
│ └── example
│ └── sacnbluetooth
│ └── ExampleUnitTest.java
├── build
│ ├── android-profile
│ │ ├── profile-2017-10-20-21-04-12-350.rawproto
│ │ ├── profile-2017-10-20-21-04-26-047.rawproto
│ │ ├── profile-2017-10-20-21-35-29-649.rawproto
│ │ ├── profile-2017-10-21-09-15-41-205.rawproto
│ │ ├── profile-2017-10-21-09-15-45-129.rawproto
│ │ ├── profile-2017-10-21-10-10-32-901.rawproto
│ │ ├── profile-2017-10-21-12-50-53-894.rawproto
│ │ ├── profile-2017-10-21-13-34-51-986.rawproto
│ │ ├── profile-2017-10-21-14-14-26-810.rawproto
│ │ ├── profile-2017-10-21-15-13-04-662.rawproto
│ │ ├── profile-2017-10-21-15-15-14-906.rawproto
│ │ ├── profile-2017-10-21-15-22-55-539.rawproto
│ │ ├── profile-2017-10-21-15-24-46-087.rawproto
│ │ ├── profile-2017-10-21-15-27-17-015.rawproto
│ │ ├── profile-2017-10-21-15-27-46-586.rawproto
│ │ ├── profile-2017-10-21-15-27-53-184.rawproto
│ │ ├── profile-2017-10-21-15-45-09-449.rawproto
│ │ ├── profile-2017-10-21-15-51-11-860.rawproto
│ │ ├── profile-2017-10-21-15-56-55-660.rawproto
│ │ ├── profile-2017-10-21-16-07-22-332.rawproto
│ │ ├── profile-2017-10-21-16-08-06-322.rawproto
│ │ ├── profile-2017-10-21-16-11-45-378.rawproto
│ │ ├── profile-2017-10-21-17-03-25-375.rawproto
│ │ ├── profile-2017-10-21-17-08-09-986.rawproto
│ │ ├── profile-2017-10-21-17-25-01-683.rawproto
│ │ ├── profile-2017-10-21-22-32-27-640.rawproto
│ │ ├── profile-2017-10-21-22-32-40-528.rawproto
│ │ ├── profile-2017-10-22-09-30-38-333.rawproto
│ │ ├── profile-2017-10-22-09-30-53-276.rawproto
│ │ ├── profile-2017-10-22-09-57-42-989.rawproto
│ │ ├── profile-2017-10-22-09-57-58-835.rawproto
│ │ ├── profile-2017-10-22-10-03-01-564.rawproto
│ │ ├── profile-2017-10-22-10-15-19-949.rawproto
│ │ ├── profile-2017-10-22-10-45-17-663.rawproto
│ │ ├── profile-2017-10-22-10-46-14-345.rawproto
│ │ ├── profile-2017-10-22-10-56-28-602.rawproto
│ │ ├── profile-2017-10-22-10-58-42-531.rawproto
│ │ ├── profile-2017-10-22-10-59-42-107.rawproto
│ │ ├── profile-2017-10-22-11-01-10-391.rawproto
│ │ ├── profile-2017-10-22-11-02-37-051.rawproto
│ │ ├── profile-2017-10-22-11-03-17-734.rawproto
│ │ ├── profile-2017-10-22-11-06-45-391.rawproto
│ │ ├── profile-2017-10-22-11-07-33-330.rawproto
│ │ ├── profile-2017-10-22-11-14-53-747.rawproto
│ │ ├── profile-2017-10-22-11-19-09-239.rawproto
│ │ ├── profile-2017-10-22-11-19-39-591.rawproto
│ │ ├── profile-2017-10-22-11-19-53-328.rawproto
│ │ ├── profile-2017-10-22-11-20-24-879.rawproto
│ │ ├── profile-2017-10-22-13-27-57-844.rawproto
│ │ ├── profile-2017-10-22-13-29-29-794.rawproto
│ │ ├── profile-2017-10-22-13-35-23-260.rawproto
│ │ ├── profile-2017-10-22-13-40-54-321.rawproto
│ │ ├── profile-2017-10-22-13-42-53-384.rawproto
│ │ ├── profile-2017-10-22-13-47-05-370.rawproto
│ │ ├── profile-2017-10-22-13-47-47-342.rawproto
│ │ ├── profile-2017-10-22-14-28-46-813.rawproto
│ │ ├── profile-2017-10-22-14-29-36-295.rawproto
│ │ ├── profile-2017-10-22-14-47-45-617.rawproto
│ │ ├── profile-2017-10-22-14-52-53-688.rawproto
│ │ ├── profile-2017-10-22-14-55-35-398.rawproto
│ │ ├── profile-2017-10-22-14-56-34-009.rawproto
│ │ ├── profile-2017-10-22-14-58-00-024.rawproto
│ │ ├── profile-2017-10-22-15-03-07-364.rawproto
│ │ ├── profile-2017-10-22-15-18-32-985.rawproto
│ │ ├── profile-2017-10-22-15-20-13-318.rawproto
│ │ ├── profile-2017-10-22-15-22-28-308.rawproto
│ │ ├── profile-2017-10-22-15-24-48-916.rawproto
│ │ ├── profile-2017-10-22-15-26-29-734.rawproto
│ │ ├── profile-2017-10-22-15-41-52-822.rawproto
│ │ ├── profile-2017-10-22-18-21-09-534.rawproto
│ │ ├── profile-2017-10-22-18-23-17-023.rawproto
│ │ ├── profile-2017-10-22-18-25-32-563.rawproto
│ │ ├── profile-2017-10-22-18-28-09-925.rawproto
│ │ ├── profile-2017-10-22-18-29-23-554.rawproto
│ │ ├── profile-2017-10-22-19-02-32-156.rawproto
│ │ ├── profile-2017-10-22-19-04-29-825.rawproto
│ │ ├── profile-2017-10-22-19-05-28-792.rawproto
│ │ ├── profile-2017-10-22-19-07-01-222.rawproto
│ │ ├── profile-2017-10-22-19-34-49-268.rawproto
│ │ ├── profile-2017-10-22-19-39-15-686.rawproto
│ │ ├── profile-2017-10-22-19-41-02-987.rawproto
│ │ ├── profile-2017-10-22-19-43-34-864.rawproto
│ │ ├── profile-2017-10-22-19-49-14-513.rawproto
│ │ ├── profile-2017-10-22-19-49-58-271.rawproto
│ │ ├── profile-2017-10-22-19-50-25-319.rawproto
│ │ ├── profile-2017-10-22-20-08-39-025.rawproto
│ │ ├── profile-2017-10-23-09-23-39-955.rawproto
│ │ ├── profile-2017-10-23-09-24-06-239.rawproto
│ │ ├── profile-2017-10-23-09-25-32-262.rawproto
│ │ ├── profile-2017-10-23-09-25-36-569.rawproto
│ │ ├── profile-2017-10-23-09-59-54-934.rawproto
│ │ ├── profile-2017-10-23-09-59-58-529.rawproto
│ │ ├── profile-2017-10-23-10-46-20-107.rawproto
│ │ ├── profile-2017-10-23-10-47-40-429.rawproto
│ │ ├── profile-2017-10-23-10-53-15-341.rawproto
│ │ ├── profile-2017-10-23-10-53-42-046.rawproto
│ │ ├── profile-2017-10-23-10-54-23-525.rawproto
│ │ ├── profile-2017-10-23-10-54-46-373.rawproto
│ │ ├── profile-2017-10-23-10-55-03-228.rawproto
│ │ ├── profile-2017-10-23-11-00-50-535.rawproto
│ │ ├── profile-2017-10-23-11-01-40-380.rawproto
│ │ ├── profile-2017-10-23-11-07-06-068.rawproto
│ │ ├── profile-2017-10-23-11-07-31-483.rawproto
│ │ ├── profile-2017-10-23-12-36-38-085.rawproto
│ │ ├── profile-2017-10-23-12-37-15-195.rawproto
│ │ ├── profile-2017-10-23-12-37-58-715.rawproto
│ │ ├── profile-2017-10-23-12-39-00-377.rawproto
│ │ ├── profile-2017-10-23-12-39-28-984.rawproto
│ │ ├── profile-2017-10-23-12-43-38-829.rawproto
│ │ ├── profile-2017-10-23-12-44-15-587.rawproto
│ │ ├── profile-2017-10-23-12-57-12-986.rawproto
│ │ ├── profile-2017-10-23-12-57-38-960.rawproto
│ │ ├── profile-2017-10-23-12-59-28-584.rawproto
│ │ ├── profile-2017-10-23-13-02-07-941.rawproto
│ │ ├── profile-2017-10-23-13-03-34-532.rawproto
│ │ ├── profile-2017-10-23-13-04-41-130.rawproto
│ │ ├── profile-2017-10-23-13-05-18-318.rawproto
│ │ ├── profile-2017-10-23-13-05-31-291.rawproto
│ │ ├── profile-2017-10-23-13-06-14-613.rawproto
│ │ ├── profile-2017-10-23-13-18-00-467.rawproto
│ │ ├── profile-2017-10-23-13-18-15-532.rawproto
│ │ ├── profile-2017-10-23-13-22-21-397.rawproto
│ │ ├── profile-2017-10-23-14-23-51-649.rawproto
│ │ ├── profile-2017-10-23-14-24-30-775.rawproto
│ │ ├── profile-2017-10-23-14-25-08-837.rawproto
│ │ ├── profile-2017-10-23-14-29-56-078.rawproto
│ │ ├── profile-2017-10-23-14-30-57-673.rawproto
│ │ ├── profile-2017-10-23-14-31-12-705.rawproto
│ │ ├── profile-2017-10-23-14-31-51-388.rawproto
│ │ ├── profile-2017-10-23-14-32-29-400.rawproto
│ │ ├── profile-2017-10-23-14-34-06-397.rawproto
│ │ ├── profile-2017-10-23-14-35-09-992.rawproto
│ │ ├── profile-2017-10-23-14-36-11-301.rawproto
│ │ ├── profile-2017-10-23-14-37-15-235.rawproto
│ │ ├── profile-2017-10-23-14-46-58-228.rawproto
│ │ ├── profile-2017-10-23-14-48-12-025.rawproto
│ │ ├── profile-2017-10-23-14-49-12-140.rawproto
│ │ ├── profile-2017-10-23-14-52-29-107.rawproto
│ │ ├── profile-2017-10-23-15-00-48-326.rawproto
│ │ ├── profile-2017-10-23-15-03-52-449.rawproto
│ │ ├── profile-2017-10-23-15-04-49-547.rawproto
│ │ ├── profile-2017-10-23-15-08-08-586.rawproto
│ │ ├── profile-2017-10-23-15-14-43-687.rawproto
│ │ ├── profile-2017-10-23-15-22-59-281.rawproto
│ │ ├── profile-2017-10-23-15-34-03-457.rawproto
│ │ ├── profile-2017-10-23-15-46-43-886.rawproto
│ │ ├── profile-2017-10-23-15-47-30-613.rawproto
│ │ ├── profile-2017-10-23-16-15-11-078.rawproto
│ │ ├── profile-2017-10-23-16-24-24-602.rawproto
│ │ ├── profile-2017-10-23-17-04-38-437.rawproto
│ │ ├── profile-2017-10-23-17-06-18-636.rawproto
│ │ ├── profile-2017-10-23-17-06-37-628.rawproto
│ │ ├── profile-2017-10-23-17-06-52-542.rawproto
│ │ ├── profile-2017-10-23-17-07-18-405.rawproto
│ │ ├── profile-2017-10-23-20-29-28-884.rawproto
│ │ ├── profile-2017-10-23-20-29-44-881.rawproto
│ │ ├── profile-2017-10-23-20-48-21-858.rawproto
│ │ ├── profile-2017-10-24-07-58-15-872.rawproto
│ │ ├── profile-2017-10-24-07-58-42-634.rawproto
│ │ ├── profile-2017-10-24-10-01-21-537.rawproto
│ │ ├── profile-2017-10-24-10-01-38-089.rawproto
│ │ ├── profile-2017-10-24-11-21-24-763.rawproto
│ │ ├── profile-2017-10-24-11-22-26-884.rawproto
│ │ ├── profile-2017-10-24-11-36-02-238.rawproto
│ │ ├── profile-2017-10-24-11-37-15-134.rawproto
│ │ ├── profile-2017-10-24-11-48-38-498.rawproto
│ │ ├── profile-2017-10-24-12-53-55-533.rawproto
│ │ ├── profile-2017-10-24-12-55-08-674.rawproto
│ │ ├── profile-2017-10-24-13-02-38-040.rawproto
│ │ ├── profile-2017-10-24-13-04-12-735.rawproto
│ │ ├── profile-2017-10-24-13-41-31-555.rawproto
│ │ ├── profile-2017-10-24-13-41-59-977.rawproto
│ │ ├── profile-2017-10-24-13-42-13-723.rawproto
│ │ ├── profile-2017-10-24-13-44-41-638.rawproto
│ │ ├── profile-2017-10-24-14-43-08-734.rawproto
│ │ ├── profile-2017-10-24-14-50-18-971.rawproto
│ │ ├── profile-2017-10-24-14-51-40-966.rawproto
│ │ ├── profile-2017-10-24-15-02-43-039.rawproto
│ │ ├── profile-2017-10-24-15-03-49-836.rawproto
│ │ ├── profile-2017-10-24-15-05-43-750.rawproto
│ │ ├── profile-2017-10-24-15-06-37-592.rawproto
│ │ ├── profile-2017-10-24-15-06-47-318.rawproto
│ │ ├── profile-2017-10-24-15-16-03-949.rawproto
│ │ ├── profile-2017-10-24-19-39-44-961.rawproto
│ │ ├── profile-2017-10-24-19-39-50-409.rawproto
│ │ ├── profile-2017-10-24-19-39-55-847.rawproto
│ │ ├── profile-2017-10-24-19-40-28-465.rawproto
│ │ ├── profile-2017-10-24-19-41-04-143.rawproto
│ │ ├── profile-2017-10-24-19-41-16-622.rawproto
│ │ ├── profile-2017-10-24-19-41-58-164.rawproto
│ │ ├── profile-2017-10-24-19-42-14-462.rawproto
│ │ ├── profile-2017-10-24-19-42-34-522.rawproto
│ │ ├── profile-2017-10-24-19-46-08-215.rawproto
│ │ ├── profile-2017-10-24-19-47-31-786.rawproto
│ │ ├── profile-2017-10-24-19-49-59-143.rawproto
│ │ ├── profile-2017-10-24-19-57-47-482.rawproto
│ │ ├── profile-2017-10-24-19-58-37-925.rawproto
│ │ ├── profile-2017-10-24-19-59-19-168.rawproto
│ │ ├── profile-2017-10-24-20-07-32-813.rawproto
│ │ ├── profile-2017-10-24-20-07-36-698.rawproto
│ │ ├── profile-2017-10-24-20-46-49-438.rawproto
│ │ ├── profile-2017-10-24-21-05-01-560.rawproto
│ │ ├── profile-2017-10-24-21-12-56-427.rawproto
│ │ ├── profile-2017-10-24-21-18-43-474.rawproto
│ │ ├── profile-2017-10-24-21-19-13-834.rawproto
│ │ ├── profile-2017-10-24-21-21-41-959.rawproto
│ │ ├── profile-2017-10-24-21-26-15-619.rawproto
│ │ ├── profile-2017-10-24-21-30-28-796.rawproto
│ │ ├── profile-2017-10-24-21-31-35-503.rawproto
│ │ ├── profile-2017-10-24-21-36-13-269.rawproto
│ │ ├── profile-2017-10-24-21-44-12-270.rawproto
│ │ ├── profile-2017-10-24-21-46-50-885.rawproto
│ │ ├── profile-2017-10-24-21-53-02-523.rawproto
│ │ ├── profile-2017-10-24-22-01-02-506.rawproto
│ │ ├── profile-2017-10-25-10-18-11-419.rawproto
│ │ ├── profile-2017-10-25-10-18-48-681.rawproto
│ │ ├── profile-2017-10-31-10-39-48-679.rawproto
│ │ ├── profile-2017-10-31-10-39-52-663.rawproto
│ │ ├── profile-2017-10-31-11-05-02-206.rawproto
│ │ ├── profile-2017-10-31-11-09-29-136.rawproto
│ │ ├── profile-2017-10-31-11-13-51-738.rawproto
│ │ ├── profile-2017-10-31-11-15-48-534.rawproto
│ │ ├── profile-2017-10-31-11-21-47-198.rawproto
│ │ ├── profile-2017-10-31-13-02-07-078.rawproto
│ │ ├── profile-2017-10-31-13-02-14-374.rawproto
│ │ ├── profile-2017-10-31-13-13-32-957.rawproto
│ │ ├── profile-2017-10-31-13-14-02-769.rawproto
│ │ ├── profile-2017-10-31-17-49-25-330.rawproto
│ │ ├── profile-2017-10-31-17-49-46-832.rawproto
│ │ ├── profile-2017-10-31-17-52-04-649.rawproto
│ │ ├── profile-2017-10-31-17-52-50-660.rawproto
│ │ ├── profile-2017-10-31-17-53-41-580.rawproto
│ │ ├── profile-2017-10-31-17-54-19-046.rawproto
│ │ ├── profile-2017-10-31-17-54-55-274.rawproto
│ │ ├── profile-2017-10-31-18-04-24-322.rawproto
│ │ ├── profile-2017-10-31-18-05-05-354.rawproto
│ │ ├── profile-2017-10-31-18-06-44-311.rawproto
│ │ ├── profile-2017-10-31-18-07-52-387.rawproto
│ │ ├── profile-2017-10-31-21-05-51-710.rawproto
│ │ ├── profile-2017-10-31-21-06-32-814.rawproto
│ │ ├── profile-2017-10-31-21-11-55-505.rawproto
│ │ ├── profile-2017-10-31-21-12-17-790.rawproto
│ │ ├── profile-2017-10-31-21-22-18-150.rawproto
│ │ ├── profile-2017-10-31-21-24-44-743.rawproto
│ │ ├── profile-2017-10-31-21-25-06-945.rawproto
│ │ ├── profile-2017-10-31-21-28-56-251.rawproto
│ │ ├── profile-2017-10-31-21-29-50-476.rawproto
│ │ ├── profile-2017-10-31-21-30-22-969.rawproto
│ │ ├── profile-2017-10-31-21-38-34-049.rawproto
│ │ ├── profile-2017-10-31-21-40-38-321.rawproto
│ │ ├── profile-2017-10-31-21-45-19-363.rawproto
│ │ ├── profile-2017-10-31-21-46-26-390.rawproto
│ │ ├── profile-2017-10-31-21-47-42-663.rawproto
│ │ ├── profile-2017-10-31-22-10-26-436.rawproto
│ │ ├── profile-2017-10-31-22-10-38-423.rawproto
│ │ ├── profile-2017-10-31-22-12-45-446.rawproto
│ │ ├── profile-2017-10-31-22-24-18-644.rawproto
│ │ ├── profile-2017-10-31-22-24-36-721.rawproto
│ │ ├── profile-2017-10-31-22-26-15-152.rawproto
│ │ ├── profile-2017-10-31-22-26-31-740.rawproto
│ │ ├── profile-2017-10-31-22-26-50-048.rawproto
│ │ ├── profile-2017-10-31-22-33-21-717.rawproto
│ │ ├── profile-2017-10-31-22-33-38-175.rawproto
│ │ ├── profile-2017-11-01-09-19-54-803.rawproto
│ │ ├── profile-2017-11-01-09-20-09-230.rawproto
│ │ ├── profile-2017-11-01-09-26-44-868.rawproto
│ │ ├── profile-2017-11-01-09-27-23-685.rawproto
│ │ ├── profile-2017-11-01-10-17-20-370.rawproto
│ │ ├── profile-2017-11-01-10-18-07-746.rawproto
│ │ ├── profile-2017-11-01-10-18-44-475.rawproto
│ │ ├── profile-2017-11-01-10-26-23-318.rawproto
│ │ ├── profile-2017-11-01-11-01-51-638.rawproto
│ │ ├── profile-2017-11-01-11-04-50-843.rawproto
│ │ ├── profile-2017-11-01-11-06-08-978.rawproto
│ │ ├── profile-2017-11-01-11-07-00-762.rawproto
│ │ ├── profile-2017-11-01-11-07-42-631.rawproto
│ │ ├── profile-2017-11-01-11-08-03-183.rawproto
│ │ ├── profile-2017-11-01-11-59-18-619.rawproto
│ │ ├── profile-2017-11-01-11-59-31-303.rawproto
│ │ ├── profile-2017-11-01-12-06-11-274.rawproto
│ │ ├── profile-2017-11-01-12-59-51-716.rawproto
│ │ ├── profile-2017-11-01-13-03-24-974.rawproto
│ │ ├── profile-2017-11-01-16-55-56-259.rawproto
│ │ ├── profile-2017-11-01-16-56-06-710.rawproto
│ │ ├── profile-2017-11-07-15-01-49-195.rawproto
│ │ ├── profile-2017-11-07-15-02-03-361.rawproto
│ │ ├── profile-2017-11-07-15-20-31-773.rawproto
│ │ ├── profile-2017-11-07-15-48-39-906.rawproto
│ │ ├── profile-2017-11-07-15-50-40-007.rawproto
│ │ ├── profile-2017-11-07-15-53-01-379.rawproto
│ │ ├── profile-2017-11-07-15-53-53-661.rawproto
│ │ ├── profile-2017-11-07-16-12-38-545.rawproto
│ │ ├── profile-2017-11-07-16-16-58-583.rawproto
│ │ ├── profile-2017-11-07-16-18-04-633.rawproto
│ │ ├── profile-2017-11-07-16-18-15-889.rawproto
│ │ ├── profile-2017-11-07-16-18-40-115.rawproto
│ │ ├── profile-2017-11-07-16-20-02-082.rawproto
│ │ ├── profile-2017-11-07-16-28-09-335.rawproto
│ │ ├── profile-2017-11-07-16-28-38-231.rawproto
│ │ ├── profile-2017-11-07-16-29-31-421.rawproto
│ │ ├── profile-2017-11-07-16-30-07-094.rawproto
│ │ ├── profile-2017-11-07-16-35-18-311.rawproto
│ │ └── profile-2017-11-07-16-35-25-544.rawproto
│ ├── generated
│ │ └── mockable-android-26.jar
│ └── intermediates
│ └── dex-cache
│ └── cache.xml
├── build.gradle
├── gradle
│ └── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── local.properties
├── SacnBluetooth.iml
└── settings.gradle
497 directories, 1570 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论