├── .docs ├── cover-dark.png └── cover.png ├── .gitignore ├── .metadata ├── .pubignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── build.gradle ├── settings.gradle └── src │ ├── libs │ ├── SmartCardLib.jar │ ├── core-3.1.0.jar │ ├── telpo_api.jar │ ├── zkandroidcore.jar │ └── zkandroidnidfpsensor.jar │ └── main │ ├── AndroidManifest.xml │ ├── jniLibs │ ├── arm64-v8a │ │ ├── libAlUSB.so │ │ ├── libIDFpr.so │ │ ├── libIDFpr2.so │ │ ├── libcard_reader.so │ │ ├── libcard_reader2.so │ │ ├── libcollect.so │ │ ├── libdecode.so │ │ ├── libfingerprint.so │ │ ├── libhardreader.so │ │ ├── libidcard.so │ │ ├── libidcard900.so │ │ ├── libidfprcap.so │ │ ├── libled.so │ │ ├── libledpower.so │ │ ├── libmoneybox.so │ │ ├── liboldidimage.so │ │ ├── libpicc.so │ │ ├── libqrpower.so │ │ ├── librelay_control.so │ │ ├── libserial_port.so │ │ ├── libsystem_util.so │ │ ├── libtb_wlt2bmp.so │ │ ├── libtelpo_battery.so │ │ ├── libtelpo_msr.so │ │ ├── libtelpo_nfc.so │ │ ├── libtelpo_printer.so │ │ ├── libtelpo_printer5880.so │ │ ├── libtelpo_printer_48.so │ │ ├── libtelpo_printer_581.so │ │ ├── libtelpo_serial.so │ │ ├── libusb_util.so │ │ ├── libusbtest.so │ │ ├── libzksensorcore.so │ │ └── libzkwltdecode.so │ ├── armeabi-v7a │ │ ├── libAlUSB.so │ │ ├── libIDFpr.so │ │ ├── libIDFpr2.so │ │ ├── libcard_reader.so │ │ ├── libcard_reader2.so │ │ ├── libcollect.so │ │ ├── libdecode.so │ │ ├── libfingerprint.so │ │ ├── libhardreader.so │ │ ├── libidcard.so │ │ ├── libidcard900.so │ │ ├── libidfprcap.so │ │ ├── libled.so │ │ ├── libledpower.so │ │ ├── libmoneybox.so │ │ ├── liboldidimage.so │ │ ├── libpicc.so │ │ ├── libqrpower.so │ │ ├── librelay_control.so │ │ ├── libserial_port.so │ │ ├── libsystem_util.so │ │ ├── libtb_wlt2bmp.so │ │ ├── libtelpo_battery.so │ │ ├── libtelpo_msr.so │ │ ├── libtelpo_nfc.so │ │ ├── libtelpo_printer.so │ │ ├── libtelpo_printer5880.so │ │ ├── libtelpo_printer_48.so │ │ ├── libtelpo_printer_581.so │ │ ├── libtelpo_serial.so │ │ ├── libusb_util.so │ │ ├── libusbtest.so │ │ ├── libzksensorcore.so │ │ └── libzkwltdecode.so │ └── armeabi │ │ ├── libAlUSB.so │ │ ├── libIDFpr.so │ │ ├── libIDFpr2.so │ │ ├── libcard_reader.so │ │ ├── libcard_reader2.so │ │ ├── libcollect.so │ │ ├── libdecode.so │ │ ├── libfingerprint.so │ │ ├── libhardreader.so │ │ ├── libidcard.so │ │ ├── libidcard900.so │ │ ├── libidfprcap.so │ │ ├── libled.so │ │ ├── libledpower.so │ │ ├── libmoneybox.so │ │ ├── liboldidimage.so │ │ ├── libpicc.so │ │ ├── libqrpower.so │ │ ├── librelay_control.so │ │ ├── libserial_port.so │ │ ├── libsystem_util.so │ │ ├── libtb_wlt2bmp.so │ │ ├── libtelpo_battery.so │ │ ├── libtelpo_msr.so │ │ ├── libtelpo_nfc.so │ │ ├── libtelpo_printer.so │ │ ├── libtelpo_printer5880.so │ │ ├── libtelpo_printer_48.so │ │ ├── libtelpo_printer_581.so │ │ ├── libtelpo_serial.so │ │ ├── libusb_util.so │ │ ├── libusbtest.so │ │ ├── libzksensorcore.so │ │ └── libzkwltdecode.so │ └── kotlin │ └── me │ └── aljan │ └── telpo_flutter_sdk │ ├── MethodChannelResultWrapper.kt │ ├── TelpoFlutterSdkPlugin.kt │ ├── TelpoThermalPrinter.kt │ └── Utils.kt ├── example ├── .gitignore ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── me │ │ │ │ │ └── aljan │ │ │ │ │ └── telpo_flutter_sdk_example │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ ├── WorkspaceSettings.xcsettings │ │ │ │ └── swiftpm │ │ │ │ └── configuration │ │ │ │ └── .gitkeep │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ ├── WorkspaceSettings.xcsettings │ │ │ └── swiftpm │ │ │ └── configuration │ │ │ └── .gitkeep │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ └── main.dart ├── pubspec.lock └── pubspec.yaml ├── lib ├── src │ ├── models │ │ ├── print_data.dart │ │ └── telpo_print_sheet.dart │ ├── telpo_flutter_channel.dart │ └── utilities │ │ └── enums.dart └── telpo_flutter_sdk.dart └── pubspec.yaml /.docs/cover-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/.docs/cover-dark.png -------------------------------------------------------------------------------- /.docs/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/.docs/cover.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/.metadata -------------------------------------------------------------------------------- /.pubignore: -------------------------------------------------------------------------------- 1 | /.docs 2 | /example/build/ -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'telpo_flutter_sdk' 2 | -------------------------------------------------------------------------------- /android/src/libs/SmartCardLib.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/libs/SmartCardLib.jar -------------------------------------------------------------------------------- /android/src/libs/core-3.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/libs/core-3.1.0.jar -------------------------------------------------------------------------------- /android/src/libs/telpo_api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/libs/telpo_api.jar -------------------------------------------------------------------------------- /android/src/libs/zkandroidcore.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/libs/zkandroidcore.jar -------------------------------------------------------------------------------- /android/src/libs/zkandroidnidfpsensor.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/libs/zkandroidnidfpsensor.jar -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libAlUSB.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libAlUSB.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libIDFpr.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libIDFpr.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libIDFpr2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libIDFpr2.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libcard_reader.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libcard_reader.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libcard_reader2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libcard_reader2.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libcollect.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libcollect.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libdecode.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libdecode.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libfingerprint.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libfingerprint.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libhardreader.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libhardreader.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libidcard.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libidcard.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libidcard900.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libidcard900.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libidfprcap.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libidfprcap.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libled.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libled.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libledpower.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libledpower.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libmoneybox.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libmoneybox.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/liboldidimage.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/liboldidimage.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libpicc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libpicc.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libqrpower.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libqrpower.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/librelay_control.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/librelay_control.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libserial_port.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libserial_port.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libsystem_util.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libsystem_util.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libtb_wlt2bmp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libtb_wlt2bmp.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libtelpo_battery.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libtelpo_battery.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libtelpo_msr.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libtelpo_msr.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libtelpo_nfc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libtelpo_nfc.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libtelpo_printer.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libtelpo_printer.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libtelpo_printer5880.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libtelpo_printer5880.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libtelpo_printer_48.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libtelpo_printer_48.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libtelpo_printer_581.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libtelpo_printer_581.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libtelpo_serial.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libtelpo_serial.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libusb_util.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libusb_util.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libusbtest.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libusbtest.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libzksensorcore.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libzksensorcore.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libzkwltdecode.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/arm64-v8a/libzkwltdecode.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libAlUSB.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libAlUSB.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libIDFpr.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libIDFpr.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libIDFpr2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libIDFpr2.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libcard_reader.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libcard_reader.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libcard_reader2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libcard_reader2.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libcollect.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libcollect.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libdecode.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libdecode.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libfingerprint.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libfingerprint.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libhardreader.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libhardreader.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libidcard.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libidcard.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libidcard900.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libidcard900.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libidfprcap.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libidfprcap.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libled.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libled.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libledpower.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libledpower.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libmoneybox.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libmoneybox.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/liboldidimage.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/liboldidimage.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libpicc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libpicc.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libqrpower.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libqrpower.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/librelay_control.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/librelay_control.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libserial_port.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libserial_port.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libsystem_util.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libsystem_util.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libtb_wlt2bmp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libtb_wlt2bmp.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libtelpo_battery.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libtelpo_battery.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libtelpo_msr.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libtelpo_msr.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libtelpo_nfc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libtelpo_nfc.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libtelpo_printer.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libtelpo_printer.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libtelpo_printer5880.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libtelpo_printer5880.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libtelpo_printer_48.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libtelpo_printer_48.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libtelpo_printer_581.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libtelpo_printer_581.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libtelpo_serial.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libtelpo_serial.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libusb_util.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libusb_util.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libusbtest.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libusbtest.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libzksensorcore.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libzksensorcore.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libzkwltdecode.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi-v7a/libzkwltdecode.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libAlUSB.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libAlUSB.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libIDFpr.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libIDFpr.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libIDFpr2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libIDFpr2.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libcard_reader.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libcard_reader.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libcard_reader2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libcard_reader2.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libcollect.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libcollect.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libdecode.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libdecode.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libfingerprint.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libfingerprint.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libhardreader.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libhardreader.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libidcard.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libidcard.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libidcard900.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libidcard900.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libidfprcap.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libidfprcap.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libled.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libled.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libledpower.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libledpower.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libmoneybox.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libmoneybox.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/liboldidimage.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/liboldidimage.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libpicc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libpicc.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libqrpower.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libqrpower.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/librelay_control.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/librelay_control.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libserial_port.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libserial_port.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libsystem_util.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libsystem_util.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libtb_wlt2bmp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libtb_wlt2bmp.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libtelpo_battery.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libtelpo_battery.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libtelpo_msr.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libtelpo_msr.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libtelpo_nfc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libtelpo_nfc.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libtelpo_printer.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libtelpo_printer.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libtelpo_printer5880.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libtelpo_printer5880.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libtelpo_printer_48.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libtelpo_printer_48.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libtelpo_printer_581.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libtelpo_printer_581.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libtelpo_serial.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libtelpo_serial.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libusb_util.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libusb_util.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libusbtest.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libusbtest.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libzksensorcore.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libzksensorcore.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libzkwltdecode.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/jniLibs/armeabi/libzkwltdecode.so -------------------------------------------------------------------------------- /android/src/main/kotlin/me/aljan/telpo_flutter_sdk/MethodChannelResultWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/kotlin/me/aljan/telpo_flutter_sdk/MethodChannelResultWrapper.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/me/aljan/telpo_flutter_sdk/TelpoFlutterSdkPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/kotlin/me/aljan/telpo_flutter_sdk/TelpoFlutterSdkPlugin.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/me/aljan/telpo_flutter_sdk/TelpoThermalPrinter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/kotlin/me/aljan/telpo_flutter_sdk/TelpoThermalPrinter.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/me/aljan/telpo_flutter_sdk/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/android/src/main/kotlin/me/aljan/telpo_flutter_sdk/Utils.kt -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/README.md -------------------------------------------------------------------------------- /example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/analysis_options.yaml -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/kotlin/me/aljan/telpo_flutter_sdk_example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/android/app/src/main/kotlin/me/aljan/telpo_flutter_sdk_example/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/configuration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/swiftpm/configuration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/pubspec.lock -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /lib/src/models/print_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/lib/src/models/print_data.dart -------------------------------------------------------------------------------- /lib/src/models/telpo_print_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/lib/src/models/telpo_print_sheet.dart -------------------------------------------------------------------------------- /lib/src/telpo_flutter_channel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/lib/src/telpo_flutter_channel.dart -------------------------------------------------------------------------------- /lib/src/utilities/enums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/lib/src/utilities/enums.dart -------------------------------------------------------------------------------- /lib/telpo_flutter_sdk.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/lib/telpo_flutter_sdk.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljanshere/telpo-flutter-sdk/HEAD/pubspec.yaml --------------------------------------------------------------------------------