├── .gitignore ├── Android ├── BLEProofCentral │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── codeStyles │ │ │ ├── Project.xml │ │ │ └── codeStyleConfig.xml │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── jarRepositories.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── rpt11 │ │ │ │ └── bleproofcentral │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── rpt11 │ │ │ │ │ └── bleproofcentral │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ └── img_gray_border.9.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── img_gray_border.9.png │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── img_gray_border.9.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ └── img_gray_border.9.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ └── img_gray_border.9.png │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── rpt11 │ │ │ └── bleproofcentral │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── BLEProofPeripheral │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── jarRepositories.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── rpt11 │ │ │ │ └── bleproofperipheral │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── rpt11 │ │ │ │ │ └── bleproofperipheral │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ └── img_gray_border.9.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── img_gray_border.9.png │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── img_gray_border.9.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ └── img_gray_border.9.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ └── img_gray_border.9.png │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── rpt11 │ │ │ └── bleproofperipheral │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── Other │ └── BLEProofCentralNoScan │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── compiler.xml │ ├── gradle.xml │ ├── misc.xml │ └── vcs.xml │ ├── README.md │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── rpt11 │ │ │ └── bleproofcentralnoscan │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── rpt11 │ │ │ │ └── bleproofcentralnoscan │ │ │ │ ├── BLEDeviceActivity.kt │ │ │ │ ├── DeviceListAdapter.kt │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_bledevice.xml │ │ │ ├── activity_main.xml │ │ │ └── device_list_item.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── rpt11 │ │ └── bleproofcentralnoscan │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── ArduinoNano33 ├── BLEProofCentral │ └── BLEProofCentral.ino └── BLEProofPeripheral │ └── BLEProofPeripheral.ino ├── ESP32 ├── BLEProofCentral │ └── BLEProofCentral.ino └── BLEProofPeripheral │ └── BLEProofPeripheral.ino ├── README.md ├── iOS ├── BLEProofCentral │ ├── BLEProofCentral.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── BLEProofCentral │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── BLECentralViewController.swift │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ └── Info.plist └── BLEProofPeripheral │ ├── BLEProofPeripheral.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── BLEProofPeripheral │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── BLEPeripheralViewController.swift │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ └── Info.plist └── images ├── Screenshot-Android-Central.jpg ├── Screenshot-Android-CentralNoScan-Connect.jpg ├── Screenshot-Android-CentralNoScan-List.jpg ├── Screenshot-ESP32-Peripheral.png └── Screenshot-iOS-Peripheral.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/.gitignore -------------------------------------------------------------------------------- /Android/BLEProofCentral/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/.gitignore -------------------------------------------------------------------------------- /Android/BLEProofCentral/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Android/BLEProofCentral/.idea/.name: -------------------------------------------------------------------------------- 1 | BLEProofCentral -------------------------------------------------------------------------------- /Android/BLEProofCentral/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /Android/BLEProofCentral/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /Android/BLEProofCentral/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/.idea/compiler.xml -------------------------------------------------------------------------------- /Android/BLEProofCentral/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/.idea/gradle.xml -------------------------------------------------------------------------------- /Android/BLEProofCentral/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /Android/BLEProofCentral/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/.idea/misc.xml -------------------------------------------------------------------------------- /Android/BLEProofCentral/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/.idea/vcs.xml -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/build.gradle -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/proguard-rules.pro -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/androidTest/java/com/rpt11/bleproofcentral/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/androidTest/java/com/rpt11/bleproofcentral/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/main/java/com/rpt11/bleproofcentral/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/main/java/com/rpt11/bleproofcentral/MainActivity.kt -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/main/res/drawable-hdpi/img_gray_border.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/main/res/drawable-hdpi/img_gray_border.9.png -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/main/res/drawable-mdpi/img_gray_border.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/main/res/drawable-mdpi/img_gray_border.9.png -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/main/res/drawable-xhdpi/img_gray_border.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/main/res/drawable-xhdpi/img_gray_border.9.png -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/main/res/drawable-xxhdpi/img_gray_border.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/main/res/drawable-xxhdpi/img_gray_border.9.png -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/main/res/drawable-xxxhdpi/img_gray_border.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/main/res/drawable-xxxhdpi/img_gray_border.9.png -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /Android/BLEProofCentral/app/src/test/java/com/rpt11/bleproofcentral/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/app/src/test/java/com/rpt11/bleproofcentral/ExampleUnitTest.kt -------------------------------------------------------------------------------- /Android/BLEProofCentral/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/build.gradle -------------------------------------------------------------------------------- /Android/BLEProofCentral/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/gradle.properties -------------------------------------------------------------------------------- /Android/BLEProofCentral/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android/BLEProofCentral/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Android/BLEProofCentral/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/gradlew -------------------------------------------------------------------------------- /Android/BLEProofCentral/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofCentral/gradlew.bat -------------------------------------------------------------------------------- /Android/BLEProofCentral/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "BLEProofCentral" -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/.gitignore -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/.idea/compiler.xml -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/.idea/gradle.xml -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/.idea/misc.xml -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/.idea/vcs.xml -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/build.gradle -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/proguard-rules.pro -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/androidTest/java/com/rpt11/bleproofperipheral/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/androidTest/java/com/rpt11/bleproofperipheral/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/main/java/com/rpt11/bleproofperipheral/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/main/java/com/rpt11/bleproofperipheral/MainActivity.kt -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/main/res/drawable-hdpi/img_gray_border.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/main/res/drawable-hdpi/img_gray_border.9.png -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/main/res/drawable-mdpi/img_gray_border.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/main/res/drawable-mdpi/img_gray_border.9.png -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/main/res/drawable-xhdpi/img_gray_border.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/main/res/drawable-xhdpi/img_gray_border.9.png -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/main/res/drawable-xxhdpi/img_gray_border.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/main/res/drawable-xxhdpi/img_gray_border.9.png -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/main/res/drawable-xxxhdpi/img_gray_border.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/main/res/drawable-xxxhdpi/img_gray_border.9.png -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/app/src/test/java/com/rpt11/bleproofperipheral/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/app/src/test/java/com/rpt11/bleproofperipheral/ExampleUnitTest.kt -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/build.gradle -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/gradle.properties -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/gradlew -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/BLEProofPeripheral/gradlew.bat -------------------------------------------------------------------------------- /Android/BLEProofPeripheral/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "BLEProofPeripheral" -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/.gitignore -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/.idea/compiler.xml -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/.idea/gradle.xml -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/.idea/misc.xml -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/.idea/vcs.xml -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/README.md -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/build.gradle -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/proguard-rules.pro -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/src/androidTest/java/com/rpt11/bleproofcentralnoscan/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/src/androidTest/java/com/rpt11/bleproofcentralnoscan/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/src/main/java/com/rpt11/bleproofcentralnoscan/BLEDeviceActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/src/main/java/com/rpt11/bleproofcentralnoscan/BLEDeviceActivity.kt -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/src/main/java/com/rpt11/bleproofcentralnoscan/DeviceListAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/src/main/java/com/rpt11/bleproofcentralnoscan/DeviceListAdapter.kt -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/src/main/java/com/rpt11/bleproofcentralnoscan/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/src/main/java/com/rpt11/bleproofcentralnoscan/MainActivity.kt -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/src/main/res/layout/activity_bledevice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/src/main/res/layout/activity_bledevice.xml -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/src/main/res/layout/device_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/src/main/res/layout/device_list_item.xml -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/app/src/test/java/com/rpt11/bleproofcentralnoscan/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/app/src/test/java/com/rpt11/bleproofcentralnoscan/ExampleUnitTest.kt -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/build.gradle -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/gradle.properties -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/gradlew -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/gradlew.bat -------------------------------------------------------------------------------- /Android/Other/BLEProofCentralNoScan/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/Android/Other/BLEProofCentralNoScan/settings.gradle -------------------------------------------------------------------------------- /ArduinoNano33/BLEProofCentral/BLEProofCentral.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/ArduinoNano33/BLEProofCentral/BLEProofCentral.ino -------------------------------------------------------------------------------- /ArduinoNano33/BLEProofPeripheral/BLEProofPeripheral.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/ArduinoNano33/BLEProofPeripheral/BLEProofPeripheral.ino -------------------------------------------------------------------------------- /ESP32/BLEProofCentral/BLEProofCentral.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/ESP32/BLEProofCentral/BLEProofCentral.ino -------------------------------------------------------------------------------- /ESP32/BLEProofPeripheral/BLEProofPeripheral.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/ESP32/BLEProofPeripheral/BLEProofPeripheral.ino -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/README.md -------------------------------------------------------------------------------- /iOS/BLEProofCentral/BLEProofCentral.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/iOS/BLEProofCentral/BLEProofCentral.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOS/BLEProofCentral/BLEProofCentral.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/iOS/BLEProofCentral/BLEProofCentral.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOS/BLEProofCentral/BLEProofCentral.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/iOS/BLEProofCentral/BLEProofCentral.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /iOS/BLEProofCentral/BLEProofCentral/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/iOS/BLEProofCentral/BLEProofCentral/AppDelegate.swift -------------------------------------------------------------------------------- /iOS/BLEProofCentral/BLEProofCentral/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/iOS/BLEProofCentral/BLEProofCentral/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /iOS/BLEProofCentral/BLEProofCentral/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/iOS/BLEProofCentral/BLEProofCentral/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOS/BLEProofCentral/BLEProofCentral/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/iOS/BLEProofCentral/BLEProofCentral/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iOS/BLEProofCentral/BLEProofCentral/BLECentralViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/iOS/BLEProofCentral/BLEProofCentral/BLECentralViewController.swift -------------------------------------------------------------------------------- /iOS/BLEProofCentral/BLEProofCentral/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/iOS/BLEProofCentral/BLEProofCentral/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /iOS/BLEProofCentral/BLEProofCentral/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/iOS/BLEProofCentral/BLEProofCentral/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /iOS/BLEProofCentral/BLEProofCentral/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/iOS/BLEProofCentral/BLEProofCentral/Info.plist -------------------------------------------------------------------------------- /iOS/BLEProofPeripheral/BLEProofPeripheral.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/iOS/BLEProofPeripheral/BLEProofPeripheral.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOS/BLEProofPeripheral/BLEProofPeripheral.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/iOS/BLEProofPeripheral/BLEProofPeripheral.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOS/BLEProofPeripheral/BLEProofPeripheral.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/iOS/BLEProofPeripheral/BLEProofPeripheral.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /iOS/BLEProofPeripheral/BLEProofPeripheral/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/iOS/BLEProofPeripheral/BLEProofPeripheral/AppDelegate.swift -------------------------------------------------------------------------------- /iOS/BLEProofPeripheral/BLEProofPeripheral/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/iOS/BLEProofPeripheral/BLEProofPeripheral/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /iOS/BLEProofPeripheral/BLEProofPeripheral/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/iOS/BLEProofPeripheral/BLEProofPeripheral/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOS/BLEProofPeripheral/BLEProofPeripheral/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/iOS/BLEProofPeripheral/BLEProofPeripheral/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iOS/BLEProofPeripheral/BLEProofPeripheral/BLEPeripheralViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/iOS/BLEProofPeripheral/BLEProofPeripheral/BLEPeripheralViewController.swift -------------------------------------------------------------------------------- /iOS/BLEProofPeripheral/BLEProofPeripheral/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/iOS/BLEProofPeripheral/BLEProofPeripheral/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /iOS/BLEProofPeripheral/BLEProofPeripheral/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/iOS/BLEProofPeripheral/BLEProofPeripheral/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /iOS/BLEProofPeripheral/BLEProofPeripheral/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/iOS/BLEProofPeripheral/BLEProofPeripheral/Info.plist -------------------------------------------------------------------------------- /images/Screenshot-Android-Central.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/images/Screenshot-Android-Central.jpg -------------------------------------------------------------------------------- /images/Screenshot-Android-CentralNoScan-Connect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/images/Screenshot-Android-CentralNoScan-Connect.jpg -------------------------------------------------------------------------------- /images/Screenshot-Android-CentralNoScan-List.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/images/Screenshot-Android-CentralNoScan-List.jpg -------------------------------------------------------------------------------- /images/Screenshot-ESP32-Peripheral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/images/Screenshot-ESP32-Peripheral.png -------------------------------------------------------------------------------- /images/Screenshot-iOS-Peripheral.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlavrushko/BLEProof-collection/HEAD/images/Screenshot-iOS-Peripheral.jpg --------------------------------------------------------------------------------