├── .gitattributes ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── RNBluetoothEscposPrinter.podspec ├── android ├── .gradle │ ├── 7.4.2 │ │ ├── checksums │ │ │ ├── md5-checksums.bin │ │ │ └── sha1-checksums.bin │ │ ├── dependencies-accessors │ │ │ └── gc.properties │ │ ├── fileChanges │ │ │ └── last-build.bin │ │ └── gc.properties │ ├── buildOutputCleanup │ │ └── cache.properties │ └── vcs-1 │ │ └── gc.properties ├── build.gradle ├── build │ ├── generated │ │ └── source │ │ │ └── buildConfig │ │ │ └── release │ │ │ └── cn │ │ │ └── jystudio │ │ │ └── bluetooth │ │ │ └── BuildConfig.java │ ├── intermediates │ │ ├── aapt_friendly_merged_manifests │ │ │ └── release │ │ │ │ └── aapt │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── output.json │ │ ├── annotation_processor_list │ │ │ └── release │ │ │ │ └── annotationProcessors.json │ │ ├── annotations_typedef_file │ │ │ └── release │ │ │ │ └── extractReleaseAnnotations │ │ │ │ └── typedefs.txt │ │ ├── blame │ │ │ └── res │ │ │ │ └── release │ │ │ │ ├── multi-v2 │ │ │ │ ├── values-af.json │ │ │ │ ├── values-am.json │ │ │ │ ├── values-ar.json │ │ │ │ ├── values-as.json │ │ │ │ ├── values-az.json │ │ │ │ ├── values-b+sr+Latn.json │ │ │ │ ├── values-be.json │ │ │ │ ├── values-bg.json │ │ │ │ ├── values-bn.json │ │ │ │ ├── values-bs.json │ │ │ │ ├── values-ca.json │ │ │ │ ├── values-cs.json │ │ │ │ ├── values-da.json │ │ │ │ ├── values-de.json │ │ │ │ ├── values-el.json │ │ │ │ ├── values-en-rAU.json │ │ │ │ ├── values-en-rCA.json │ │ │ │ ├── values-en-rGB.json │ │ │ │ ├── values-en-rIN.json │ │ │ │ ├── values-en-rXC.json │ │ │ │ ├── values-es-rUS.json │ │ │ │ ├── values-es.json │ │ │ │ ├── values-et.json │ │ │ │ ├── values-eu.json │ │ │ │ ├── values-fa.json │ │ │ │ ├── values-fi.json │ │ │ │ ├── values-fr-rCA.json │ │ │ │ ├── values-fr.json │ │ │ │ ├── values-gl.json │ │ │ │ ├── values-gu.json │ │ │ │ ├── values-h720dp-v13.json │ │ │ │ ├── values-hdpi-v4.json │ │ │ │ ├── values-hi.json │ │ │ │ ├── values-hr.json │ │ │ │ ├── values-hu.json │ │ │ │ ├── values-hy.json │ │ │ │ ├── values-in.json │ │ │ │ ├── values-is.json │ │ │ │ ├── values-it.json │ │ │ │ ├── values-iw.json │ │ │ │ ├── values-ja.json │ │ │ │ ├── values-ka.json │ │ │ │ ├── values-kk.json │ │ │ │ ├── values-km.json │ │ │ │ ├── values-kn.json │ │ │ │ ├── values-ko.json │ │ │ │ ├── values-ky.json │ │ │ │ ├── values-land.json │ │ │ │ ├── values-large-v4.json │ │ │ │ ├── values-ldltr-v21.json │ │ │ │ ├── values-lo.json │ │ │ │ ├── values-lt.json │ │ │ │ ├── values-lv.json │ │ │ │ ├── values-mk.json │ │ │ │ ├── values-ml.json │ │ │ │ ├── values-mn.json │ │ │ │ ├── values-mr.json │ │ │ │ ├── values-ms.json │ │ │ │ ├── values-my.json │ │ │ │ ├── values-nb.json │ │ │ │ ├── values-ne.json │ │ │ │ ├── values-night-v8.json │ │ │ │ ├── values-nl.json │ │ │ │ ├── values-or.json │ │ │ │ ├── values-pa.json │ │ │ │ ├── values-pl.json │ │ │ │ ├── values-port.json │ │ │ │ ├── values-pt-rBR.json │ │ │ │ ├── values-pt-rPT.json │ │ │ │ ├── values-pt.json │ │ │ │ ├── values-ro.json │ │ │ │ ├── values-ru.json │ │ │ │ ├── values-si.json │ │ │ │ ├── values-sk.json │ │ │ │ ├── values-sl.json │ │ │ │ ├── values-sq.json │ │ │ │ ├── values-sr.json │ │ │ │ ├── values-sv.json │ │ │ │ ├── values-sw.json │ │ │ │ ├── values-sw600dp-v13.json │ │ │ │ ├── values-ta.json │ │ │ │ ├── values-te.json │ │ │ │ ├── values-th.json │ │ │ │ ├── values-tl.json │ │ │ │ ├── values-tr.json │ │ │ │ ├── values-uk.json │ │ │ │ ├── values-ur.json │ │ │ │ ├── values-uz.json │ │ │ │ ├── values-v16.json │ │ │ │ ├── values-v17.json │ │ │ │ ├── values-v18.json │ │ │ │ ├── values-v21.json │ │ │ │ ├── values-v22.json │ │ │ │ ├── values-v23.json │ │ │ │ ├── values-v24.json │ │ │ │ ├── values-v25.json │ │ │ │ ├── values-v26.json │ │ │ │ ├── values-v28.json │ │ │ │ ├── values-vi.json │ │ │ │ ├── values-watch-v20.json │ │ │ │ ├── values-watch-v21.json │ │ │ │ ├── values-xlarge-v4.json │ │ │ │ ├── values-zh-rCN.json │ │ │ │ ├── values-zh-rHK.json │ │ │ │ ├── values-zh-rTW.json │ │ │ │ ├── values-zu.json │ │ │ │ └── values.json │ │ │ │ └── single │ │ │ │ ├── anim.json │ │ │ │ ├── color-v21.json │ │ │ │ ├── color-v23.json │ │ │ │ ├── color.json │ │ │ │ ├── drawable-hdpi-v4.json │ │ │ │ ├── drawable-ldrtl-hdpi-v17.json │ │ │ │ ├── drawable-ldrtl-mdpi-v17.json │ │ │ │ ├── drawable-ldrtl-xhdpi-v17.json │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17.json │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17.json │ │ │ │ ├── drawable-mdpi-v4.json │ │ │ │ ├── drawable-v21.json │ │ │ │ ├── drawable-v23.json │ │ │ │ ├── drawable-watch-v20.json │ │ │ │ ├── drawable-xhdpi-v4.json │ │ │ │ ├── drawable-xxhdpi-v4.json │ │ │ │ ├── drawable-xxxhdpi-v4.json │ │ │ │ ├── drawable.json │ │ │ │ ├── layout-v16.json │ │ │ │ ├── layout-v21.json │ │ │ │ ├── layout-v26.json │ │ │ │ ├── layout-watch-v20.json │ │ │ │ ├── layout.json │ │ │ │ └── xml.json │ │ ├── compile_library_classes │ │ │ └── release │ │ │ │ └── classes.jar │ │ ├── compile_only_not_namespaced_r_class_jar │ │ │ └── release │ │ │ │ └── R.jar │ │ ├── incremental │ │ │ ├── mergeReleaseJniLibFolders │ │ │ │ └── merger.xml │ │ │ ├── mergeReleaseResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ ├── merged.dir │ │ │ │ │ ├── values-af │ │ │ │ │ │ └── values-af.xml │ │ │ │ │ ├── values-am │ │ │ │ │ │ └── values-am.xml │ │ │ │ │ ├── values-ar │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ ├── values-as │ │ │ │ │ │ └── values-as.xml │ │ │ │ │ ├── values-az │ │ │ │ │ │ └── values-az.xml │ │ │ │ │ ├── values-b+sr+Latn │ │ │ │ │ │ └── values-b+sr+Latn.xml │ │ │ │ │ ├── values-be │ │ │ │ │ │ └── values-be.xml │ │ │ │ │ ├── values-bg │ │ │ │ │ │ └── values-bg.xml │ │ │ │ │ ├── values-bn │ │ │ │ │ │ └── values-bn.xml │ │ │ │ │ ├── values-bs │ │ │ │ │ │ └── values-bs.xml │ │ │ │ │ ├── values-ca │ │ │ │ │ │ └── values-ca.xml │ │ │ │ │ ├── values-cs │ │ │ │ │ │ └── values-cs.xml │ │ │ │ │ ├── values-da │ │ │ │ │ │ └── values-da.xml │ │ │ │ │ ├── values-de │ │ │ │ │ │ └── values-de.xml │ │ │ │ │ ├── values-el │ │ │ │ │ │ └── values-el.xml │ │ │ │ │ ├── values-en-rAU │ │ │ │ │ │ └── values-en-rAU.xml │ │ │ │ │ ├── values-en-rCA │ │ │ │ │ │ └── values-en-rCA.xml │ │ │ │ │ ├── values-en-rGB │ │ │ │ │ │ └── values-en-rGB.xml │ │ │ │ │ ├── values-en-rIN │ │ │ │ │ │ └── values-en-rIN.xml │ │ │ │ │ ├── values-en-rXC │ │ │ │ │ │ └── values-en-rXC.xml │ │ │ │ │ ├── values-es-rUS │ │ │ │ │ │ └── values-es-rUS.xml │ │ │ │ │ ├── values-es │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ ├── values-et │ │ │ │ │ │ └── values-et.xml │ │ │ │ │ ├── values-eu │ │ │ │ │ │ └── values-eu.xml │ │ │ │ │ ├── values-fa │ │ │ │ │ │ └── values-fa.xml │ │ │ │ │ ├── values-fi │ │ │ │ │ │ └── values-fi.xml │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ │ └── values-fr-rCA.xml │ │ │ │ │ ├── values-fr │ │ │ │ │ │ └── values-fr.xml │ │ │ │ │ ├── values-gl │ │ │ │ │ │ └── values-gl.xml │ │ │ │ │ ├── values-gu │ │ │ │ │ │ └── values-gu.xml │ │ │ │ │ ├── values-h720dp-v13 │ │ │ │ │ │ └── values-h720dp-v13.xml │ │ │ │ │ ├── values-hdpi-v4 │ │ │ │ │ │ └── values-hdpi-v4.xml │ │ │ │ │ ├── values-hi │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ ├── values-hr │ │ │ │ │ │ └── values-hr.xml │ │ │ │ │ ├── values-hu │ │ │ │ │ │ └── values-hu.xml │ │ │ │ │ ├── values-hy │ │ │ │ │ │ └── values-hy.xml │ │ │ │ │ ├── values-in │ │ │ │ │ │ └── values-in.xml │ │ │ │ │ ├── values-is │ │ │ │ │ │ └── values-is.xml │ │ │ │ │ ├── values-it │ │ │ │ │ │ └── values-it.xml │ │ │ │ │ ├── values-iw │ │ │ │ │ │ └── values-iw.xml │ │ │ │ │ ├── values-ja │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ ├── values-ka │ │ │ │ │ │ └── values-ka.xml │ │ │ │ │ ├── values-kk │ │ │ │ │ │ └── values-kk.xml │ │ │ │ │ ├── values-km │ │ │ │ │ │ └── values-km.xml │ │ │ │ │ ├── values-kn │ │ │ │ │ │ └── values-kn.xml │ │ │ │ │ ├── values-ko │ │ │ │ │ │ └── values-ko.xml │ │ │ │ │ ├── values-ky │ │ │ │ │ │ └── values-ky.xml │ │ │ │ │ ├── values-land │ │ │ │ │ │ └── values-land.xml │ │ │ │ │ ├── values-large-v4 │ │ │ │ │ │ └── values-large-v4.xml │ │ │ │ │ ├── values-ldltr-v21 │ │ │ │ │ │ └── values-ldltr-v21.xml │ │ │ │ │ ├── values-lo │ │ │ │ │ │ └── values-lo.xml │ │ │ │ │ ├── values-lt │ │ │ │ │ │ └── values-lt.xml │ │ │ │ │ ├── values-lv │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ ├── values-mk │ │ │ │ │ │ └── values-mk.xml │ │ │ │ │ ├── values-ml │ │ │ │ │ │ └── values-ml.xml │ │ │ │ │ ├── values-mn │ │ │ │ │ │ └── values-mn.xml │ │ │ │ │ ├── values-mr │ │ │ │ │ │ └── values-mr.xml │ │ │ │ │ ├── values-ms │ │ │ │ │ │ └── values-ms.xml │ │ │ │ │ ├── values-my │ │ │ │ │ │ └── values-my.xml │ │ │ │ │ ├── values-nb │ │ │ │ │ │ └── values-nb.xml │ │ │ │ │ ├── values-ne │ │ │ │ │ │ └── values-ne.xml │ │ │ │ │ ├── values-night-v8 │ │ │ │ │ │ └── values-night-v8.xml │ │ │ │ │ ├── values-nl │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ ├── values-or │ │ │ │ │ │ └── values-or.xml │ │ │ │ │ ├── values-pa │ │ │ │ │ │ └── values-pa.xml │ │ │ │ │ ├── values-pl │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ ├── values-port │ │ │ │ │ │ └── values-port.xml │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ │ ├── values-pt │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ ├── values-ro │ │ │ │ │ │ └── values-ro.xml │ │ │ │ │ ├── values-ru │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ ├── values-si │ │ │ │ │ │ └── values-si.xml │ │ │ │ │ ├── values-sk │ │ │ │ │ │ └── values-sk.xml │ │ │ │ │ ├── values-sl │ │ │ │ │ │ └── values-sl.xml │ │ │ │ │ ├── values-sq │ │ │ │ │ │ └── values-sq.xml │ │ │ │ │ ├── values-sr │ │ │ │ │ │ └── values-sr.xml │ │ │ │ │ ├── values-sv │ │ │ │ │ │ └── values-sv.xml │ │ │ │ │ ├── values-sw │ │ │ │ │ │ └── values-sw.xml │ │ │ │ │ ├── values-sw600dp-v13 │ │ │ │ │ │ └── values-sw600dp-v13.xml │ │ │ │ │ ├── values-ta │ │ │ │ │ │ └── values-ta.xml │ │ │ │ │ ├── values-te │ │ │ │ │ │ └── values-te.xml │ │ │ │ │ ├── values-th │ │ │ │ │ │ └── values-th.xml │ │ │ │ │ ├── values-tl │ │ │ │ │ │ └── values-tl.xml │ │ │ │ │ ├── values-tr │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ ├── values-uk │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ ├── values-ur │ │ │ │ │ │ └── values-ur.xml │ │ │ │ │ ├── values-uz │ │ │ │ │ │ └── values-uz.xml │ │ │ │ │ ├── values-v16 │ │ │ │ │ │ └── values-v16.xml │ │ │ │ │ ├── values-v17 │ │ │ │ │ │ └── values-v17.xml │ │ │ │ │ ├── values-v18 │ │ │ │ │ │ └── values-v18.xml │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ └── values-v21.xml │ │ │ │ │ ├── values-v22 │ │ │ │ │ │ └── values-v22.xml │ │ │ │ │ ├── values-v23 │ │ │ │ │ │ └── values-v23.xml │ │ │ │ │ ├── values-v24 │ │ │ │ │ │ └── values-v24.xml │ │ │ │ │ ├── values-v25 │ │ │ │ │ │ └── values-v25.xml │ │ │ │ │ ├── values-v26 │ │ │ │ │ │ └── values-v26.xml │ │ │ │ │ ├── values-v28 │ │ │ │ │ │ └── values-v28.xml │ │ │ │ │ ├── values-vi │ │ │ │ │ │ └── values-vi.xml │ │ │ │ │ ├── values-watch-v20 │ │ │ │ │ │ └── values-watch-v20.xml │ │ │ │ │ ├── values-watch-v21 │ │ │ │ │ │ └── values-watch-v21.xml │ │ │ │ │ ├── values-xlarge-v4 │ │ │ │ │ │ └── values-xlarge-v4.xml │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ │ └── values-zh-rCN.xml │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ │ └── values-zh-rHK.xml │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ ├── values-zu │ │ │ │ │ │ └── values-zu.xml │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ └── merger.xml │ │ │ ├── mergeReleaseShaders │ │ │ │ └── merger.xml │ │ │ ├── packageReleaseAssets │ │ │ │ └── merger.xml │ │ │ ├── packageReleaseResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ └── merger.xml │ │ │ ├── release-mergeJavaRes │ │ │ │ └── merge-state │ │ │ └── release-mergeNativeLibs │ │ │ │ └── merge-state │ │ ├── javac │ │ │ └── release │ │ │ │ └── classes │ │ │ │ └── cn │ │ │ │ └── jystudio │ │ │ │ └── bluetooth │ │ │ │ ├── BluetoothService$ConnectedThread.class │ │ │ │ ├── BluetoothService.class │ │ │ │ ├── BluetoothServiceStateObserver.class │ │ │ │ ├── BuildConfig.class │ │ │ │ ├── RNBluetoothEscposPrinterPackage.class │ │ │ │ ├── RNBluetoothManagerModule$1.class │ │ │ │ ├── RNBluetoothManagerModule.class │ │ │ │ ├── escpos │ │ │ │ ├── RNBluetoothEscposPrinterModule$ColumnSplitedString.class │ │ │ │ ├── RNBluetoothEscposPrinterModule.class │ │ │ │ └── command │ │ │ │ │ └── sdk │ │ │ │ │ ├── Command.class │ │ │ │ │ ├── PrintPicture.class │ │ │ │ │ └── PrinterCommand.class │ │ │ │ └── tsc │ │ │ │ ├── RNBluetoothTscPrinterModule.class │ │ │ │ ├── TscCommand$BARCODETYPE.class │ │ │ │ ├── TscCommand$BITMAP_MODE.class │ │ │ │ ├── TscCommand$CODEPAGE.class │ │ │ │ ├── TscCommand$DENSITY.class │ │ │ │ ├── TscCommand$DIRECTION.class │ │ │ │ ├── TscCommand$EEC.class │ │ │ │ ├── TscCommand$ENABLE.class │ │ │ │ ├── TscCommand$FONTMUL.class │ │ │ │ ├── TscCommand$FONTTYPE.class │ │ │ │ ├── TscCommand$FOOT.class │ │ │ │ ├── TscCommand$READABLE.class │ │ │ │ ├── TscCommand$ROTATION.class │ │ │ │ ├── TscCommand$SPEED.class │ │ │ │ └── TscCommand.class │ │ ├── library_java_res │ │ │ └── release │ │ │ │ └── res.jar │ │ ├── library_manifest │ │ │ └── release │ │ │ │ └── AndroidManifest.xml │ │ ├── local_only_symbol_list │ │ │ └── release │ │ │ │ └── parseReleaseLibraryResources │ │ │ │ └── R-def.txt │ │ ├── manifest_merge_blame_file │ │ │ └── release │ │ │ │ └── manifest-merger-blame-release-report.txt │ │ ├── merged_java_res │ │ │ └── release │ │ │ │ └── out.jar │ │ ├── merged_manifests │ │ │ └── release │ │ │ │ └── output.json │ │ ├── packaged-classes │ │ │ └── release │ │ │ │ └── classes.jar │ │ ├── res │ │ │ ├── compiled │ │ │ │ └── release │ │ │ │ │ ├── anim_abc_fade_in.xml.flat │ │ │ │ │ ├── anim_abc_fade_out.xml.flat │ │ │ │ │ ├── anim_abc_grow_fade_in_from_bottom.xml.flat │ │ │ │ │ ├── anim_abc_popup_enter.xml.flat │ │ │ │ │ ├── anim_abc_popup_exit.xml.flat │ │ │ │ │ ├── anim_abc_shrink_fade_out_from_bottom.xml.flat │ │ │ │ │ ├── anim_abc_slide_in_bottom.xml.flat │ │ │ │ │ ├── anim_abc_slide_in_top.xml.flat │ │ │ │ │ ├── anim_abc_slide_out_bottom.xml.flat │ │ │ │ │ ├── anim_abc_slide_out_top.xml.flat │ │ │ │ │ ├── anim_abc_tooltip_enter.xml.flat │ │ │ │ │ ├── anim_abc_tooltip_exit.xml.flat │ │ │ │ │ ├── anim_catalyst_fade_in.xml.flat │ │ │ │ │ ├── anim_catalyst_fade_out.xml.flat │ │ │ │ │ ├── anim_catalyst_push_up_in.xml.flat │ │ │ │ │ ├── anim_catalyst_push_up_out.xml.flat │ │ │ │ │ ├── anim_catalyst_slide_down.xml.flat │ │ │ │ │ ├── anim_catalyst_slide_up.xml.flat │ │ │ │ │ ├── color-v21_abc_btn_colored_borderless_text_material.xml.flat │ │ │ │ │ ├── color-v23_abc_btn_colored_borderless_text_material.xml.flat │ │ │ │ │ ├── color-v23_abc_btn_colored_text_material.xml.flat │ │ │ │ │ ├── color-v23_abc_color_highlight_material.xml.flat │ │ │ │ │ ├── color-v23_abc_tint_btn_checkable.xml.flat │ │ │ │ │ ├── color-v23_abc_tint_default.xml.flat │ │ │ │ │ ├── color-v23_abc_tint_edittext.xml.flat │ │ │ │ │ ├── color-v23_abc_tint_seek_thumb.xml.flat │ │ │ │ │ ├── color-v23_abc_tint_spinner.xml.flat │ │ │ │ │ ├── color-v23_abc_tint_switch_track.xml.flat │ │ │ │ │ ├── color_abc_background_cache_hint_selector_material_dark.xml.flat │ │ │ │ │ ├── color_abc_background_cache_hint_selector_material_light.xml.flat │ │ │ │ │ ├── color_abc_btn_colored_borderless_text_material.xml.flat │ │ │ │ │ ├── color_abc_btn_colored_text_material.xml.flat │ │ │ │ │ ├── color_abc_hint_foreground_material_dark.xml.flat │ │ │ │ │ ├── color_abc_hint_foreground_material_light.xml.flat │ │ │ │ │ ├── color_abc_primary_text_disable_only_material_dark.xml.flat │ │ │ │ │ ├── color_abc_primary_text_disable_only_material_light.xml.flat │ │ │ │ │ ├── color_abc_primary_text_material_dark.xml.flat │ │ │ │ │ ├── color_abc_primary_text_material_light.xml.flat │ │ │ │ │ ├── color_abc_search_url_text.xml.flat │ │ │ │ │ ├── color_abc_secondary_text_material_dark.xml.flat │ │ │ │ │ ├── color_abc_secondary_text_material_light.xml.flat │ │ │ │ │ ├── color_abc_tint_btn_checkable.xml.flat │ │ │ │ │ ├── color_abc_tint_default.xml.flat │ │ │ │ │ ├── color_abc_tint_edittext.xml.flat │ │ │ │ │ ├── color_abc_tint_seek_thumb.xml.flat │ │ │ │ │ ├── color_abc_tint_spinner.xml.flat │ │ │ │ │ ├── color_abc_tint_switch_track.xml.flat │ │ │ │ │ ├── color_switch_thumb_material_dark.xml.flat │ │ │ │ │ ├── color_switch_thumb_material_light.xml.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_list_focused_holo.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_notification_bg_low_normal.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_notification_bg_normal.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat │ │ │ │ │ ├── drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ ├── drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_list_focused_holo.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_notification_bg_low_normal.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_notification_bg_normal.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat │ │ │ │ │ ├── drawable-v21_abc_action_bar_item_background_material.xml.flat │ │ │ │ │ ├── drawable-v21_abc_btn_colored_material.xml.flat │ │ │ │ │ ├── drawable-v21_abc_dialog_material_background.xml.flat │ │ │ │ │ ├── drawable-v21_abc_edit_text_material.xml.flat │ │ │ │ │ ├── drawable-v21_abc_list_divider_material.xml.flat │ │ │ │ │ ├── drawable-v21_notification_action_background.xml.flat │ │ │ │ │ ├── drawable-v23_abc_control_background_material.xml.flat │ │ │ │ │ ├── drawable-watch-v20_abc_dialog_material_background.xml.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_notification_bg_normal.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat │ │ │ │ │ ├── drawable_abc_btn_borderless_material.xml.flat │ │ │ │ │ ├── drawable_abc_btn_check_material.xml.flat │ │ │ │ │ ├── drawable_abc_btn_colored_material.xml.flat │ │ │ │ │ ├── drawable_abc_btn_default_mtrl_shape.xml.flat │ │ │ │ │ ├── drawable_abc_btn_radio_material.xml.flat │ │ │ │ │ ├── drawable_abc_cab_background_internal_bg.xml.flat │ │ │ │ │ ├── drawable_abc_cab_background_top_material.xml.flat │ │ │ │ │ ├── drawable_abc_dialog_material_background.xml.flat │ │ │ │ │ ├── drawable_abc_edit_text_material.xml.flat │ │ │ │ │ ├── drawable_abc_ic_ab_back_material.xml.flat │ │ │ │ │ ├── drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat │ │ │ │ │ ├── drawable_abc_ic_clear_material.xml.flat │ │ │ │ │ ├── drawable_abc_ic_go_search_api_material.xml.flat │ │ │ │ │ ├── drawable_abc_ic_menu_overflow_material.xml.flat │ │ │ │ │ ├── drawable_abc_ic_search_api_material.xml.flat │ │ │ │ │ ├── drawable_abc_ic_voice_search_api_material.xml.flat │ │ │ │ │ ├── drawable_abc_item_background_holo_dark.xml.flat │ │ │ │ │ ├── drawable_abc_item_background_holo_light.xml.flat │ │ │ │ │ ├── drawable_abc_list_divider_material.xml.flat │ │ │ │ │ ├── drawable_abc_list_selector_background_transition_holo_dark.xml.flat │ │ │ │ │ ├── drawable_abc_list_selector_background_transition_holo_light.xml.flat │ │ │ │ │ ├── drawable_abc_list_selector_holo_dark.xml.flat │ │ │ │ │ ├── drawable_abc_list_selector_holo_light.xml.flat │ │ │ │ │ ├── drawable_abc_ratingbar_indicator_material.xml.flat │ │ │ │ │ ├── drawable_abc_ratingbar_material.xml.flat │ │ │ │ │ ├── drawable_abc_ratingbar_small_material.xml.flat │ │ │ │ │ ├── drawable_abc_seekbar_thumb_material.xml.flat │ │ │ │ │ ├── drawable_abc_seekbar_tick_mark_material.xml.flat │ │ │ │ │ ├── drawable_abc_seekbar_track_material.xml.flat │ │ │ │ │ ├── drawable_abc_spinner_textfield_background_material.xml.flat │ │ │ │ │ ├── drawable_abc_switch_thumb_material.xml.flat │ │ │ │ │ ├── drawable_abc_tab_indicator_material.xml.flat │ │ │ │ │ ├── drawable_abc_text_cursor_material.xml.flat │ │ │ │ │ ├── drawable_abc_textfield_search_material.xml.flat │ │ │ │ │ ├── drawable_abc_vector_test.xml.flat │ │ │ │ │ ├── drawable_notification_bg.xml.flat │ │ │ │ │ ├── drawable_notification_bg_low.xml.flat │ │ │ │ │ ├── drawable_notification_icon_background.xml.flat │ │ │ │ │ ├── drawable_notification_tile_bg.xml.flat │ │ │ │ │ ├── drawable_redbox_top_border_background.xml.flat │ │ │ │ │ ├── drawable_tooltip_frame_dark.xml.flat │ │ │ │ │ ├── drawable_tooltip_frame_light.xml.flat │ │ │ │ │ ├── layout-v16_notification_template_custom_big.xml.flat │ │ │ │ │ ├── layout-v21_notification_action.xml.flat │ │ │ │ │ ├── layout-v21_notification_action_tombstone.xml.flat │ │ │ │ │ ├── layout-v21_notification_template_custom_big.xml.flat │ │ │ │ │ ├── layout-v21_notification_template_icon_group.xml.flat │ │ │ │ │ ├── layout-v26_abc_screen_toolbar.xml.flat │ │ │ │ │ ├── layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat │ │ │ │ │ ├── layout-watch-v20_abc_alert_dialog_title_material.xml.flat │ │ │ │ │ ├── layout_abc_action_bar_title_item.xml.flat │ │ │ │ │ ├── layout_abc_action_bar_up_container.xml.flat │ │ │ │ │ ├── layout_abc_action_menu_item_layout.xml.flat │ │ │ │ │ ├── layout_abc_action_menu_layout.xml.flat │ │ │ │ │ ├── layout_abc_action_mode_bar.xml.flat │ │ │ │ │ ├── layout_abc_action_mode_close_item_material.xml.flat │ │ │ │ │ ├── layout_abc_activity_chooser_view.xml.flat │ │ │ │ │ ├── layout_abc_activity_chooser_view_list_item.xml.flat │ │ │ │ │ ├── layout_abc_alert_dialog_button_bar_material.xml.flat │ │ │ │ │ ├── layout_abc_alert_dialog_material.xml.flat │ │ │ │ │ ├── layout_abc_alert_dialog_title_material.xml.flat │ │ │ │ │ ├── layout_abc_cascading_menu_item_layout.xml.flat │ │ │ │ │ ├── layout_abc_dialog_title_material.xml.flat │ │ │ │ │ ├── layout_abc_expanded_menu_layout.xml.flat │ │ │ │ │ ├── layout_abc_list_menu_item_checkbox.xml.flat │ │ │ │ │ ├── layout_abc_list_menu_item_icon.xml.flat │ │ │ │ │ ├── layout_abc_list_menu_item_layout.xml.flat │ │ │ │ │ ├── layout_abc_list_menu_item_radio.xml.flat │ │ │ │ │ ├── layout_abc_popup_menu_header_item_layout.xml.flat │ │ │ │ │ ├── layout_abc_popup_menu_item_layout.xml.flat │ │ │ │ │ ├── layout_abc_screen_content_include.xml.flat │ │ │ │ │ ├── layout_abc_screen_simple.xml.flat │ │ │ │ │ ├── layout_abc_screen_simple_overlay_action_mode.xml.flat │ │ │ │ │ ├── layout_abc_screen_toolbar.xml.flat │ │ │ │ │ ├── layout_abc_search_dropdown_item_icons_2line.xml.flat │ │ │ │ │ ├── layout_abc_search_view.xml.flat │ │ │ │ │ ├── layout_abc_select_dialog_material.xml.flat │ │ │ │ │ ├── layout_abc_tooltip.xml.flat │ │ │ │ │ ├── layout_dev_loading_view.xml.flat │ │ │ │ │ ├── layout_fps_view.xml.flat │ │ │ │ │ ├── layout_notification_action.xml.flat │ │ │ │ │ ├── layout_notification_action_tombstone.xml.flat │ │ │ │ │ ├── layout_notification_media_action.xml.flat │ │ │ │ │ ├── layout_notification_media_cancel_action.xml.flat │ │ │ │ │ ├── layout_notification_template_big_media.xml.flat │ │ │ │ │ ├── layout_notification_template_big_media_custom.xml.flat │ │ │ │ │ ├── layout_notification_template_big_media_narrow.xml.flat │ │ │ │ │ ├── layout_notification_template_big_media_narrow_custom.xml.flat │ │ │ │ │ ├── layout_notification_template_icon_group.xml.flat │ │ │ │ │ ├── layout_notification_template_lines_media.xml.flat │ │ │ │ │ ├── layout_notification_template_media.xml.flat │ │ │ │ │ ├── layout_notification_template_media_custom.xml.flat │ │ │ │ │ ├── layout_notification_template_part_chronometer.xml.flat │ │ │ │ │ ├── layout_notification_template_part_time.xml.flat │ │ │ │ │ ├── layout_redbox_item_frame.xml.flat │ │ │ │ │ ├── layout_redbox_item_title.xml.flat │ │ │ │ │ ├── layout_redbox_view.xml.flat │ │ │ │ │ ├── layout_select_dialog_item_material.xml.flat │ │ │ │ │ ├── layout_select_dialog_multichoice_material.xml.flat │ │ │ │ │ ├── layout_select_dialog_singlechoice_material.xml.flat │ │ │ │ │ ├── layout_support_simple_spinner_dropdown_item.xml.flat │ │ │ │ │ ├── values-af_values-af.arsc.flat │ │ │ │ │ ├── values-am_values-am.arsc.flat │ │ │ │ │ ├── values-ar_values-ar.arsc.flat │ │ │ │ │ ├── values-as_values-as.arsc.flat │ │ │ │ │ ├── values-az_values-az.arsc.flat │ │ │ │ │ ├── values-b+sr+Latn_values-b+sr+Latn.arsc.flat │ │ │ │ │ ├── values-be_values-be.arsc.flat │ │ │ │ │ ├── values-bg_values-bg.arsc.flat │ │ │ │ │ ├── values-bn_values-bn.arsc.flat │ │ │ │ │ ├── values-bs_values-bs.arsc.flat │ │ │ │ │ ├── values-ca_values-ca.arsc.flat │ │ │ │ │ ├── values-cs_values-cs.arsc.flat │ │ │ │ │ ├── values-da_values-da.arsc.flat │ │ │ │ │ ├── values-de_values-de.arsc.flat │ │ │ │ │ ├── values-el_values-el.arsc.flat │ │ │ │ │ ├── values-en-rAU_values-en-rAU.arsc.flat │ │ │ │ │ ├── values-en-rCA_values-en-rCA.arsc.flat │ │ │ │ │ ├── values-en-rGB_values-en-rGB.arsc.flat │ │ │ │ │ ├── values-en-rIN_values-en-rIN.arsc.flat │ │ │ │ │ ├── values-en-rXC_values-en-rXC.arsc.flat │ │ │ │ │ ├── values-es-rUS_values-es-rUS.arsc.flat │ │ │ │ │ ├── values-es_values-es.arsc.flat │ │ │ │ │ ├── values-et_values-et.arsc.flat │ │ │ │ │ ├── values-eu_values-eu.arsc.flat │ │ │ │ │ ├── values-fa_values-fa.arsc.flat │ │ │ │ │ ├── values-fi_values-fi.arsc.flat │ │ │ │ │ ├── values-fr-rCA_values-fr-rCA.arsc.flat │ │ │ │ │ ├── values-fr_values-fr.arsc.flat │ │ │ │ │ ├── values-gl_values-gl.arsc.flat │ │ │ │ │ ├── values-gu_values-gu.arsc.flat │ │ │ │ │ ├── values-h720dp-v13_values-h720dp-v13.arsc.flat │ │ │ │ │ ├── values-hdpi-v4_values-hdpi-v4.arsc.flat │ │ │ │ │ ├── values-hi_values-hi.arsc.flat │ │ │ │ │ ├── values-hr_values-hr.arsc.flat │ │ │ │ │ ├── values-hu_values-hu.arsc.flat │ │ │ │ │ ├── values-hy_values-hy.arsc.flat │ │ │ │ │ ├── values-in_values-in.arsc.flat │ │ │ │ │ ├── values-is_values-is.arsc.flat │ │ │ │ │ ├── values-it_values-it.arsc.flat │ │ │ │ │ ├── values-iw_values-iw.arsc.flat │ │ │ │ │ ├── values-ja_values-ja.arsc.flat │ │ │ │ │ ├── values-ka_values-ka.arsc.flat │ │ │ │ │ ├── values-kk_values-kk.arsc.flat │ │ │ │ │ ├── values-km_values-km.arsc.flat │ │ │ │ │ ├── values-kn_values-kn.arsc.flat │ │ │ │ │ ├── values-ko_values-ko.arsc.flat │ │ │ │ │ ├── values-ky_values-ky.arsc.flat │ │ │ │ │ ├── values-land_values-land.arsc.flat │ │ │ │ │ ├── values-large-v4_values-large-v4.arsc.flat │ │ │ │ │ ├── values-ldltr-v21_values-ldltr-v21.arsc.flat │ │ │ │ │ ├── values-lo_values-lo.arsc.flat │ │ │ │ │ ├── values-lt_values-lt.arsc.flat │ │ │ │ │ ├── values-lv_values-lv.arsc.flat │ │ │ │ │ ├── values-mk_values-mk.arsc.flat │ │ │ │ │ ├── values-ml_values-ml.arsc.flat │ │ │ │ │ ├── values-mn_values-mn.arsc.flat │ │ │ │ │ ├── values-mr_values-mr.arsc.flat │ │ │ │ │ ├── values-ms_values-ms.arsc.flat │ │ │ │ │ ├── values-my_values-my.arsc.flat │ │ │ │ │ ├── values-nb_values-nb.arsc.flat │ │ │ │ │ ├── values-ne_values-ne.arsc.flat │ │ │ │ │ ├── values-night-v8_values-night-v8.arsc.flat │ │ │ │ │ ├── values-nl_values-nl.arsc.flat │ │ │ │ │ ├── values-or_values-or.arsc.flat │ │ │ │ │ ├── values-pa_values-pa.arsc.flat │ │ │ │ │ ├── values-pl_values-pl.arsc.flat │ │ │ │ │ ├── values-port_values-port.arsc.flat │ │ │ │ │ ├── values-pt-rBR_values-pt-rBR.arsc.flat │ │ │ │ │ ├── values-pt-rPT_values-pt-rPT.arsc.flat │ │ │ │ │ ├── values-pt_values-pt.arsc.flat │ │ │ │ │ ├── values-ro_values-ro.arsc.flat │ │ │ │ │ ├── values-ru_values-ru.arsc.flat │ │ │ │ │ ├── values-si_values-si.arsc.flat │ │ │ │ │ ├── values-sk_values-sk.arsc.flat │ │ │ │ │ ├── values-sl_values-sl.arsc.flat │ │ │ │ │ ├── values-sq_values-sq.arsc.flat │ │ │ │ │ ├── values-sr_values-sr.arsc.flat │ │ │ │ │ ├── values-sv_values-sv.arsc.flat │ │ │ │ │ ├── values-sw600dp-v13_values-sw600dp-v13.arsc.flat │ │ │ │ │ ├── values-sw_values-sw.arsc.flat │ │ │ │ │ ├── values-ta_values-ta.arsc.flat │ │ │ │ │ ├── values-te_values-te.arsc.flat │ │ │ │ │ ├── values-th_values-th.arsc.flat │ │ │ │ │ ├── values-tl_values-tl.arsc.flat │ │ │ │ │ ├── values-tr_values-tr.arsc.flat │ │ │ │ │ ├── values-uk_values-uk.arsc.flat │ │ │ │ │ ├── values-ur_values-ur.arsc.flat │ │ │ │ │ ├── values-uz_values-uz.arsc.flat │ │ │ │ │ ├── values-v16_values-v16.arsc.flat │ │ │ │ │ ├── values-v17_values-v17.arsc.flat │ │ │ │ │ ├── values-v18_values-v18.arsc.flat │ │ │ │ │ ├── values-v21_values-v21.arsc.flat │ │ │ │ │ ├── values-v22_values-v22.arsc.flat │ │ │ │ │ ├── values-v23_values-v23.arsc.flat │ │ │ │ │ ├── values-v24_values-v24.arsc.flat │ │ │ │ │ ├── values-v25_values-v25.arsc.flat │ │ │ │ │ ├── values-v26_values-v26.arsc.flat │ │ │ │ │ ├── values-v28_values-v28.arsc.flat │ │ │ │ │ ├── values-vi_values-vi.arsc.flat │ │ │ │ │ ├── values-watch-v20_values-watch-v20.arsc.flat │ │ │ │ │ ├── values-watch-v21_values-watch-v21.arsc.flat │ │ │ │ │ ├── values-xlarge-v4_values-xlarge-v4.arsc.flat │ │ │ │ │ ├── values-zh-rCN_values-zh-rCN.arsc.flat │ │ │ │ │ ├── values-zh-rHK_values-zh-rHK.arsc.flat │ │ │ │ │ ├── values-zh-rTW_values-zh-rTW.arsc.flat │ │ │ │ │ ├── values-zu_values-zu.arsc.flat │ │ │ │ │ ├── values_values.arsc.flat │ │ │ │ │ └── xml_rn_dev_preferences.xml.flat │ │ │ ├── merged │ │ │ │ └── release │ │ │ │ │ ├── anim │ │ │ │ │ ├── abc_fade_in.xml │ │ │ │ │ ├── abc_fade_out.xml │ │ │ │ │ ├── abc_grow_fade_in_from_bottom.xml │ │ │ │ │ ├── abc_popup_enter.xml │ │ │ │ │ ├── abc_popup_exit.xml │ │ │ │ │ ├── abc_shrink_fade_out_from_bottom.xml │ │ │ │ │ ├── abc_slide_in_bottom.xml │ │ │ │ │ ├── abc_slide_in_top.xml │ │ │ │ │ ├── abc_slide_out_bottom.xml │ │ │ │ │ ├── abc_slide_out_top.xml │ │ │ │ │ ├── abc_tooltip_enter.xml │ │ │ │ │ ├── abc_tooltip_exit.xml │ │ │ │ │ ├── catalyst_fade_in.xml │ │ │ │ │ ├── catalyst_fade_out.xml │ │ │ │ │ ├── catalyst_push_up_in.xml │ │ │ │ │ ├── catalyst_push_up_out.xml │ │ │ │ │ ├── catalyst_slide_down.xml │ │ │ │ │ └── catalyst_slide_up.xml │ │ │ │ │ ├── color-v21 │ │ │ │ │ └── abc_btn_colored_borderless_text_material.xml │ │ │ │ │ ├── color-v23 │ │ │ │ │ ├── abc_btn_colored_borderless_text_material.xml │ │ │ │ │ ├── abc_btn_colored_text_material.xml │ │ │ │ │ ├── abc_color_highlight_material.xml │ │ │ │ │ ├── abc_tint_btn_checkable.xml │ │ │ │ │ ├── abc_tint_default.xml │ │ │ │ │ ├── abc_tint_edittext.xml │ │ │ │ │ ├── abc_tint_seek_thumb.xml │ │ │ │ │ ├── abc_tint_spinner.xml │ │ │ │ │ └── abc_tint_switch_track.xml │ │ │ │ │ ├── color │ │ │ │ │ ├── abc_background_cache_hint_selector_material_dark.xml │ │ │ │ │ ├── abc_background_cache_hint_selector_material_light.xml │ │ │ │ │ ├── abc_btn_colored_borderless_text_material.xml │ │ │ │ │ ├── abc_btn_colored_text_material.xml │ │ │ │ │ ├── abc_hint_foreground_material_dark.xml │ │ │ │ │ ├── abc_hint_foreground_material_light.xml │ │ │ │ │ ├── abc_primary_text_disable_only_material_dark.xml │ │ │ │ │ ├── abc_primary_text_disable_only_material_light.xml │ │ │ │ │ ├── abc_primary_text_material_dark.xml │ │ │ │ │ ├── abc_primary_text_material_light.xml │ │ │ │ │ ├── abc_search_url_text.xml │ │ │ │ │ ├── abc_secondary_text_material_dark.xml │ │ │ │ │ ├── abc_secondary_text_material_light.xml │ │ │ │ │ ├── abc_tint_btn_checkable.xml │ │ │ │ │ ├── abc_tint_default.xml │ │ │ │ │ ├── abc_tint_edittext.xml │ │ │ │ │ ├── abc_tint_seek_thumb.xml │ │ │ │ │ ├── abc_tint_spinner.xml │ │ │ │ │ ├── abc_tint_switch_track.xml │ │ │ │ │ ├── switch_thumb_material_dark.xml │ │ │ │ │ └── switch_thumb_material_light.xml │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ ├── notification_bg_low_normal.9.png │ │ │ │ │ ├── notification_bg_low_pressed.9.png │ │ │ │ │ ├── notification_bg_normal.9.png │ │ │ │ │ ├── notification_bg_normal_pressed.9.png │ │ │ │ │ └── notify_panel_notification_icon_bg.png │ │ │ │ │ ├── drawable-ldrtl-hdpi-v17 │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── drawable-ldrtl-mdpi-v17 │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17 │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17 │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17 │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ ├── notification_bg_low_normal.9.png │ │ │ │ │ ├── notification_bg_low_pressed.9.png │ │ │ │ │ ├── notification_bg_normal.9.png │ │ │ │ │ ├── notification_bg_normal_pressed.9.png │ │ │ │ │ └── notify_panel_notification_icon_bg.png │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ ├── abc_action_bar_item_background_material.xml │ │ │ │ │ ├── abc_btn_colored_material.xml │ │ │ │ │ ├── abc_dialog_material_background.xml │ │ │ │ │ ├── abc_edit_text_material.xml │ │ │ │ │ ├── abc_list_divider_material.xml │ │ │ │ │ └── notification_action_background.xml │ │ │ │ │ ├── drawable-v23 │ │ │ │ │ └── abc_control_background_material.xml │ │ │ │ │ ├── drawable-watch-v20 │ │ │ │ │ └── abc_dialog_material_background.xml │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ ├── notification_bg_low_normal.9.png │ │ │ │ │ ├── notification_bg_low_pressed.9.png │ │ │ │ │ ├── notification_bg_normal.9.png │ │ │ │ │ ├── notification_bg_normal_pressed.9.png │ │ │ │ │ └── notify_panel_notification_icon_bg.png │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ ├── drawable-xxxhdpi-v4 │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ └── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ ├── drawable │ │ │ │ │ ├── abc_btn_borderless_material.xml │ │ │ │ │ ├── abc_btn_check_material.xml │ │ │ │ │ ├── abc_btn_colored_material.xml │ │ │ │ │ ├── abc_btn_default_mtrl_shape.xml │ │ │ │ │ ├── abc_btn_radio_material.xml │ │ │ │ │ ├── abc_cab_background_internal_bg.xml │ │ │ │ │ ├── abc_cab_background_top_material.xml │ │ │ │ │ ├── abc_dialog_material_background.xml │ │ │ │ │ ├── abc_edit_text_material.xml │ │ │ │ │ ├── abc_ic_ab_back_material.xml │ │ │ │ │ ├── abc_ic_arrow_drop_right_black_24dp.xml │ │ │ │ │ ├── abc_ic_clear_material.xml │ │ │ │ │ ├── abc_ic_go_search_api_material.xml │ │ │ │ │ ├── abc_ic_menu_overflow_material.xml │ │ │ │ │ ├── abc_ic_search_api_material.xml │ │ │ │ │ ├── abc_ic_voice_search_api_material.xml │ │ │ │ │ ├── abc_item_background_holo_dark.xml │ │ │ │ │ ├── abc_item_background_holo_light.xml │ │ │ │ │ ├── abc_list_divider_material.xml │ │ │ │ │ ├── abc_list_selector_background_transition_holo_dark.xml │ │ │ │ │ ├── abc_list_selector_background_transition_holo_light.xml │ │ │ │ │ ├── abc_list_selector_holo_dark.xml │ │ │ │ │ ├── abc_list_selector_holo_light.xml │ │ │ │ │ ├── abc_ratingbar_indicator_material.xml │ │ │ │ │ ├── abc_ratingbar_material.xml │ │ │ │ │ ├── abc_ratingbar_small_material.xml │ │ │ │ │ ├── abc_seekbar_thumb_material.xml │ │ │ │ │ ├── abc_seekbar_tick_mark_material.xml │ │ │ │ │ ├── abc_seekbar_track_material.xml │ │ │ │ │ ├── abc_spinner_textfield_background_material.xml │ │ │ │ │ ├── abc_switch_thumb_material.xml │ │ │ │ │ ├── abc_tab_indicator_material.xml │ │ │ │ │ ├── abc_text_cursor_material.xml │ │ │ │ │ ├── abc_textfield_search_material.xml │ │ │ │ │ ├── abc_vector_test.xml │ │ │ │ │ ├── notification_bg.xml │ │ │ │ │ ├── notification_bg_low.xml │ │ │ │ │ ├── notification_icon_background.xml │ │ │ │ │ ├── notification_tile_bg.xml │ │ │ │ │ ├── redbox_top_border_background.xml │ │ │ │ │ ├── tooltip_frame_dark.xml │ │ │ │ │ └── tooltip_frame_light.xml │ │ │ │ │ ├── layout-v16 │ │ │ │ │ └── notification_template_custom_big.xml │ │ │ │ │ ├── layout-v21 │ │ │ │ │ ├── notification_action.xml │ │ │ │ │ ├── notification_action_tombstone.xml │ │ │ │ │ ├── notification_template_custom_big.xml │ │ │ │ │ └── notification_template_icon_group.xml │ │ │ │ │ ├── layout-v26 │ │ │ │ │ └── abc_screen_toolbar.xml │ │ │ │ │ ├── layout-watch-v20 │ │ │ │ │ ├── abc_alert_dialog_button_bar_material.xml │ │ │ │ │ └── abc_alert_dialog_title_material.xml │ │ │ │ │ ├── layout │ │ │ │ │ ├── abc_action_bar_title_item.xml │ │ │ │ │ ├── abc_action_bar_up_container.xml │ │ │ │ │ ├── abc_action_menu_item_layout.xml │ │ │ │ │ ├── abc_action_menu_layout.xml │ │ │ │ │ ├── abc_action_mode_bar.xml │ │ │ │ │ ├── abc_action_mode_close_item_material.xml │ │ │ │ │ ├── abc_activity_chooser_view.xml │ │ │ │ │ ├── abc_activity_chooser_view_list_item.xml │ │ │ │ │ ├── abc_alert_dialog_button_bar_material.xml │ │ │ │ │ ├── abc_alert_dialog_material.xml │ │ │ │ │ ├── abc_alert_dialog_title_material.xml │ │ │ │ │ ├── abc_cascading_menu_item_layout.xml │ │ │ │ │ ├── abc_dialog_title_material.xml │ │ │ │ │ ├── abc_expanded_menu_layout.xml │ │ │ │ │ ├── abc_list_menu_item_checkbox.xml │ │ │ │ │ ├── abc_list_menu_item_icon.xml │ │ │ │ │ ├── abc_list_menu_item_layout.xml │ │ │ │ │ ├── abc_list_menu_item_radio.xml │ │ │ │ │ ├── abc_popup_menu_header_item_layout.xml │ │ │ │ │ ├── abc_popup_menu_item_layout.xml │ │ │ │ │ ├── abc_screen_content_include.xml │ │ │ │ │ ├── abc_screen_simple.xml │ │ │ │ │ ├── abc_screen_simple_overlay_action_mode.xml │ │ │ │ │ ├── abc_screen_toolbar.xml │ │ │ │ │ ├── abc_search_dropdown_item_icons_2line.xml │ │ │ │ │ ├── abc_search_view.xml │ │ │ │ │ ├── abc_select_dialog_material.xml │ │ │ │ │ ├── abc_tooltip.xml │ │ │ │ │ ├── dev_loading_view.xml │ │ │ │ │ ├── fps_view.xml │ │ │ │ │ ├── notification_action.xml │ │ │ │ │ ├── notification_action_tombstone.xml │ │ │ │ │ ├── notification_media_action.xml │ │ │ │ │ ├── notification_media_cancel_action.xml │ │ │ │ │ ├── notification_template_big_media.xml │ │ │ │ │ ├── notification_template_big_media_custom.xml │ │ │ │ │ ├── notification_template_big_media_narrow.xml │ │ │ │ │ ├── notification_template_big_media_narrow_custom.xml │ │ │ │ │ ├── notification_template_icon_group.xml │ │ │ │ │ ├── notification_template_lines_media.xml │ │ │ │ │ ├── notification_template_media.xml │ │ │ │ │ ├── notification_template_media_custom.xml │ │ │ │ │ ├── notification_template_part_chronometer.xml │ │ │ │ │ ├── notification_template_part_time.xml │ │ │ │ │ ├── redbox_item_frame.xml │ │ │ │ │ ├── redbox_item_title.xml │ │ │ │ │ ├── redbox_view.xml │ │ │ │ │ ├── select_dialog_item_material.xml │ │ │ │ │ ├── select_dialog_multichoice_material.xml │ │ │ │ │ ├── select_dialog_singlechoice_material.xml │ │ │ │ │ └── support_simple_spinner_dropdown_item.xml │ │ │ │ │ ├── values-af │ │ │ │ │ └── values-af.xml │ │ │ │ │ ├── values-am │ │ │ │ │ └── values-am.xml │ │ │ │ │ ├── values-ar │ │ │ │ │ └── values-ar.xml │ │ │ │ │ ├── values-as │ │ │ │ │ └── values-as.xml │ │ │ │ │ ├── values-az │ │ │ │ │ └── values-az.xml │ │ │ │ │ ├── values-b+sr+Latn │ │ │ │ │ └── values-b+sr+Latn.xml │ │ │ │ │ ├── values-be │ │ │ │ │ └── values-be.xml │ │ │ │ │ ├── values-bg │ │ │ │ │ └── values-bg.xml │ │ │ │ │ ├── values-bn │ │ │ │ │ └── values-bn.xml │ │ │ │ │ ├── values-bs │ │ │ │ │ └── values-bs.xml │ │ │ │ │ ├── values-ca │ │ │ │ │ └── values-ca.xml │ │ │ │ │ ├── values-cs │ │ │ │ │ └── values-cs.xml │ │ │ │ │ ├── values-da │ │ │ │ │ └── values-da.xml │ │ │ │ │ ├── values-de │ │ │ │ │ └── values-de.xml │ │ │ │ │ ├── values-el │ │ │ │ │ └── values-el.xml │ │ │ │ │ ├── values-en-rAU │ │ │ │ │ └── values-en-rAU.xml │ │ │ │ │ ├── values-en-rCA │ │ │ │ │ └── values-en-rCA.xml │ │ │ │ │ ├── values-en-rGB │ │ │ │ │ └── values-en-rGB.xml │ │ │ │ │ ├── values-en-rIN │ │ │ │ │ └── values-en-rIN.xml │ │ │ │ │ ├── values-en-rXC │ │ │ │ │ └── values-en-rXC.xml │ │ │ │ │ ├── values-es-rUS │ │ │ │ │ └── values-es-rUS.xml │ │ │ │ │ ├── values-es │ │ │ │ │ └── values-es.xml │ │ │ │ │ ├── values-et │ │ │ │ │ └── values-et.xml │ │ │ │ │ ├── values-eu │ │ │ │ │ └── values-eu.xml │ │ │ │ │ ├── values-fa │ │ │ │ │ └── values-fa.xml │ │ │ │ │ ├── values-fi │ │ │ │ │ └── values-fi.xml │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ └── values-fr-rCA.xml │ │ │ │ │ ├── values-fr │ │ │ │ │ └── values-fr.xml │ │ │ │ │ ├── values-gl │ │ │ │ │ └── values-gl.xml │ │ │ │ │ ├── values-gu │ │ │ │ │ └── values-gu.xml │ │ │ │ │ ├── values-h720dp-v13 │ │ │ │ │ └── values-h720dp-v13.xml │ │ │ │ │ ├── values-hdpi-v4 │ │ │ │ │ └── values-hdpi-v4.xml │ │ │ │ │ ├── values-hi │ │ │ │ │ └── values-hi.xml │ │ │ │ │ ├── values-hr │ │ │ │ │ └── values-hr.xml │ │ │ │ │ ├── values-hu │ │ │ │ │ └── values-hu.xml │ │ │ │ │ ├── values-hy │ │ │ │ │ └── values-hy.xml │ │ │ │ │ ├── values-in │ │ │ │ │ └── values-in.xml │ │ │ │ │ ├── values-is │ │ │ │ │ └── values-is.xml │ │ │ │ │ ├── values-it │ │ │ │ │ └── values-it.xml │ │ │ │ │ ├── values-iw │ │ │ │ │ └── values-iw.xml │ │ │ │ │ ├── values-ja │ │ │ │ │ └── values-ja.xml │ │ │ │ │ ├── values-ka │ │ │ │ │ └── values-ka.xml │ │ │ │ │ ├── values-kk │ │ │ │ │ └── values-kk.xml │ │ │ │ │ ├── values-km │ │ │ │ │ └── values-km.xml │ │ │ │ │ ├── values-kn │ │ │ │ │ └── values-kn.xml │ │ │ │ │ ├── values-ko │ │ │ │ │ └── values-ko.xml │ │ │ │ │ ├── values-ky │ │ │ │ │ └── values-ky.xml │ │ │ │ │ ├── values-land │ │ │ │ │ └── values-land.xml │ │ │ │ │ ├── values-large-v4 │ │ │ │ │ └── values-large-v4.xml │ │ │ │ │ ├── values-ldltr-v21 │ │ │ │ │ └── values-ldltr-v21.xml │ │ │ │ │ ├── values-lo │ │ │ │ │ └── values-lo.xml │ │ │ │ │ ├── values-lt │ │ │ │ │ └── values-lt.xml │ │ │ │ │ ├── values-lv │ │ │ │ │ └── values-lv.xml │ │ │ │ │ ├── values-mk │ │ │ │ │ └── values-mk.xml │ │ │ │ │ ├── values-ml │ │ │ │ │ └── values-ml.xml │ │ │ │ │ ├── values-mn │ │ │ │ │ └── values-mn.xml │ │ │ │ │ ├── values-mr │ │ │ │ │ └── values-mr.xml │ │ │ │ │ ├── values-ms │ │ │ │ │ └── values-ms.xml │ │ │ │ │ ├── values-my │ │ │ │ │ └── values-my.xml │ │ │ │ │ ├── values-nb │ │ │ │ │ └── values-nb.xml │ │ │ │ │ ├── values-ne │ │ │ │ │ └── values-ne.xml │ │ │ │ │ ├── values-night-v8 │ │ │ │ │ └── values-night-v8.xml │ │ │ │ │ ├── values-nl │ │ │ │ │ └── values-nl.xml │ │ │ │ │ ├── values-or │ │ │ │ │ └── values-or.xml │ │ │ │ │ ├── values-pa │ │ │ │ │ └── values-pa.xml │ │ │ │ │ ├── values-pl │ │ │ │ │ └── values-pl.xml │ │ │ │ │ ├── values-port │ │ │ │ │ └── values-port.xml │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ │ ├── values-pt │ │ │ │ │ └── values-pt.xml │ │ │ │ │ ├── values-ro │ │ │ │ │ └── values-ro.xml │ │ │ │ │ ├── values-ru │ │ │ │ │ └── values-ru.xml │ │ │ │ │ ├── values-si │ │ │ │ │ └── values-si.xml │ │ │ │ │ ├── values-sk │ │ │ │ │ └── values-sk.xml │ │ │ │ │ ├── values-sl │ │ │ │ │ └── values-sl.xml │ │ │ │ │ ├── values-sq │ │ │ │ │ └── values-sq.xml │ │ │ │ │ ├── values-sr │ │ │ │ │ └── values-sr.xml │ │ │ │ │ ├── values-sv │ │ │ │ │ └── values-sv.xml │ │ │ │ │ ├── values-sw │ │ │ │ │ └── values-sw.xml │ │ │ │ │ ├── values-sw600dp-v13 │ │ │ │ │ └── values-sw600dp-v13.xml │ │ │ │ │ ├── values-ta │ │ │ │ │ └── values-ta.xml │ │ │ │ │ ├── values-te │ │ │ │ │ └── values-te.xml │ │ │ │ │ ├── values-th │ │ │ │ │ └── values-th.xml │ │ │ │ │ ├── values-tl │ │ │ │ │ └── values-tl.xml │ │ │ │ │ ├── values-tr │ │ │ │ │ └── values-tr.xml │ │ │ │ │ ├── values-uk │ │ │ │ │ └── values-uk.xml │ │ │ │ │ ├── values-ur │ │ │ │ │ └── values-ur.xml │ │ │ │ │ ├── values-uz │ │ │ │ │ └── values-uz.xml │ │ │ │ │ ├── values-v16 │ │ │ │ │ └── values-v16.xml │ │ │ │ │ ├── values-v17 │ │ │ │ │ └── values-v17.xml │ │ │ │ │ ├── values-v18 │ │ │ │ │ └── values-v18.xml │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── values-v21.xml │ │ │ │ │ ├── values-v22 │ │ │ │ │ └── values-v22.xml │ │ │ │ │ ├── values-v23 │ │ │ │ │ └── values-v23.xml │ │ │ │ │ ├── values-v24 │ │ │ │ │ └── values-v24.xml │ │ │ │ │ ├── values-v25 │ │ │ │ │ └── values-v25.xml │ │ │ │ │ ├── values-v26 │ │ │ │ │ └── values-v26.xml │ │ │ │ │ ├── values-v28 │ │ │ │ │ └── values-v28.xml │ │ │ │ │ ├── values-vi │ │ │ │ │ └── values-vi.xml │ │ │ │ │ ├── values-watch-v20 │ │ │ │ │ └── values-watch-v20.xml │ │ │ │ │ ├── values-watch-v21 │ │ │ │ │ └── values-watch-v21.xml │ │ │ │ │ ├── values-xlarge-v4 │ │ │ │ │ └── values-xlarge-v4.xml │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ └── values-zh-rCN.xml │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ └── values-zh-rHK.xml │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ ├── values-zu │ │ │ │ │ └── values-zu.xml │ │ │ │ │ ├── values │ │ │ │ │ └── values.xml │ │ │ │ │ └── xml │ │ │ │ │ └── rn_dev_preferences.xml │ │ │ └── symbol-table-with-package │ │ │ │ └── release │ │ │ │ └── package-aware-r.txt │ │ ├── runtime_library_classes │ │ │ └── release │ │ │ │ └── classes.jar │ │ └── symbols │ │ │ └── release │ │ │ └── R.txt │ └── outputs │ │ ├── aar │ │ └── react-native-bluetooth-escpos-printer-release.aar │ │ └── logs │ │ └── manifest-merger-release-report.txt └── src │ └── main │ ├── AndroidManifest.xml │ ├── gen │ └── cn │ │ └── jystudio │ │ └── bluetooth │ │ ├── BuildConfig.java │ │ ├── Manifest.java │ │ └── R.java │ ├── java │ └── cn │ │ └── jystudio │ │ └── bluetooth │ │ ├── BluetoothService.java │ │ ├── BluetoothServiceStateObserver.java │ │ ├── RNBluetoothEscposPrinterPackage.java │ │ ├── RNBluetoothManagerModule.java │ │ ├── escpos │ │ ├── RNBluetoothEscposPrinterModule.java │ │ └── command │ │ │ └── sdk │ │ │ ├── Command.java │ │ │ ├── PrintPicture.java │ │ │ └── PrinterCommand.java │ │ └── tsc │ │ ├── RNBluetoothTscPrinterModule.java │ │ └── TscCommand.java │ └── main1.iml ├── docs └── ble_service_ids.png ├── index.js ├── ios ├── ColumnSplitedString.h ├── ColumnSplitedString.m ├── ImageUtils.h ├── ImageUtils.m ├── PrintColumnBleWriteDelegate.h ├── PrintColumnBleWriteDelegate.m ├── PrintImageBleWriteDelegate.h ├── PrintImageBleWriteDelegate.m ├── RNBluetoothEscposPrinter.h ├── RNBluetoothEscposPrinter.m ├── RNBluetoothEscposPrinter.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── januslo.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── januslo.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── RNBluetoothEscposPrinter.xcworkspace │ └── contents.xcworkspacedata ├── RNBluetoothManager.h ├── RNBluetoothManager.m ├── RNBluetoothTscPrinter.h ├── RNBluetoothTscPrinter.m ├── RNTscCommand.h ├── RNTscCommand.m └── ZXingObjC-3.2.2 │ ├── .gitattributes │ ├── .npmignore │ ├── AUTHORS │ ├── AUTHORS-ZXingObjC │ ├── COPYING │ ├── NOTICE │ ├── README.md │ ├── ZXingObjC.podspec │ ├── ZXingObjC.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── OS X Framework.xcscheme │ │ ├── ZXingObjC-iOS.xcscheme │ │ ├── ZXingObjC-osx.xcscheme │ │ └── iOS Framework.xcscheme │ ├── ZXingObjC │ ├── ZXMultiFormatReader.h │ ├── ZXMultiFormatReader.m │ ├── ZXMultiFormatWriter.h │ ├── ZXMultiFormatWriter.m │ ├── ZXingObjC.h │ ├── aztec │ │ ├── ZXAztecDetectorResult.h │ │ ├── ZXAztecDetectorResult.m │ │ ├── ZXAztecReader.h │ │ ├── ZXAztecReader.m │ │ ├── ZXAztecWriter.h │ │ ├── ZXAztecWriter.m │ │ ├── ZXingObjCAztec.h │ │ ├── decoder │ │ │ ├── ZXAztecDecoder.h │ │ │ └── ZXAztecDecoder.m │ │ ├── detector │ │ │ ├── ZXAztecDetector.h │ │ │ └── ZXAztecDetector.m │ │ └── encoder │ │ │ ├── ZXAztecBinaryShiftToken.h │ │ │ ├── ZXAztecBinaryShiftToken.m │ │ │ ├── ZXAztecCode.h │ │ │ ├── ZXAztecCode.m │ │ │ ├── ZXAztecEncoder.h │ │ │ ├── ZXAztecEncoder.m │ │ │ ├── ZXAztecHighLevelEncoder.h │ │ │ ├── ZXAztecHighLevelEncoder.m │ │ │ ├── ZXAztecSimpleToken.h │ │ │ ├── ZXAztecSimpleToken.m │ │ │ ├── ZXAztecState.h │ │ │ ├── ZXAztecState.m │ │ │ ├── ZXAztecToken.h │ │ │ └── ZXAztecToken.m │ ├── client │ │ ├── ZXCGImageLuminanceSource.h │ │ ├── ZXCGImageLuminanceSource.m │ │ ├── ZXCapture.h │ │ ├── ZXCapture.m │ │ ├── ZXCaptureDelegate.h │ │ ├── ZXImage.h │ │ ├── ZXImage.m │ │ └── result │ │ │ ├── ZXAbstractDoCoMoResultParser.h │ │ │ ├── ZXAbstractDoCoMoResultParser.m │ │ │ ├── ZXAddressBookAUResultParser.h │ │ │ ├── ZXAddressBookAUResultParser.m │ │ │ ├── ZXAddressBookDoCoMoResultParser.h │ │ │ ├── ZXAddressBookDoCoMoResultParser.m │ │ │ ├── ZXAddressBookParsedResult.h │ │ │ ├── ZXAddressBookParsedResult.m │ │ │ ├── ZXBizcardResultParser.h │ │ │ ├── ZXBizcardResultParser.m │ │ │ ├── ZXBookmarkDoCoMoResultParser.h │ │ │ ├── ZXBookmarkDoCoMoResultParser.m │ │ │ ├── ZXCalendarParsedResult.h │ │ │ ├── ZXCalendarParsedResult.m │ │ │ ├── ZXEmailAddressParsedResult.h │ │ │ ├── ZXEmailAddressParsedResult.m │ │ │ ├── ZXEmailAddressResultParser.h │ │ │ ├── ZXEmailAddressResultParser.m │ │ │ ├── ZXEmailDoCoMoResultParser.h │ │ │ ├── ZXEmailDoCoMoResultParser.m │ │ │ ├── ZXExpandedProductParsedResult.h │ │ │ ├── ZXExpandedProductParsedResult.m │ │ │ ├── ZXExpandedProductResultParser.h │ │ │ ├── ZXExpandedProductResultParser.m │ │ │ ├── ZXGeoParsedResult.h │ │ │ ├── ZXGeoParsedResult.m │ │ │ ├── ZXGeoResultParser.h │ │ │ ├── ZXGeoResultParser.m │ │ │ ├── ZXISBNParsedResult.h │ │ │ ├── ZXISBNParsedResult.m │ │ │ ├── ZXISBNResultParser.h │ │ │ ├── ZXISBNResultParser.m │ │ │ ├── ZXParsedResult.h │ │ │ ├── ZXParsedResult.m │ │ │ ├── ZXParsedResultType.h │ │ │ ├── ZXProductParsedResult.h │ │ │ ├── ZXProductParsedResult.m │ │ │ ├── ZXProductResultParser.h │ │ │ ├── ZXProductResultParser.m │ │ │ ├── ZXResultParser.h │ │ │ ├── ZXResultParser.m │ │ │ ├── ZXSMSMMSResultParser.h │ │ │ ├── ZXSMSMMSResultParser.m │ │ │ ├── ZXSMSParsedResult.h │ │ │ ├── ZXSMSParsedResult.m │ │ │ ├── ZXSMSTOMMSTOResultParser.h │ │ │ ├── ZXSMSTOMMSTOResultParser.m │ │ │ ├── ZXSMTPResultParser.h │ │ │ ├── ZXSMTPResultParser.m │ │ │ ├── ZXTelParsedResult.h │ │ │ ├── ZXTelParsedResult.m │ │ │ ├── ZXTelResultParser.h │ │ │ ├── ZXTelResultParser.m │ │ │ ├── ZXTextParsedResult.h │ │ │ ├── ZXTextParsedResult.m │ │ │ ├── ZXURIParsedResult.h │ │ │ ├── ZXURIParsedResult.m │ │ │ ├── ZXURIResultParser.h │ │ │ ├── ZXURIResultParser.m │ │ │ ├── ZXURLTOResultParser.h │ │ │ ├── ZXURLTOResultParser.m │ │ │ ├── ZXVCardResultParser.h │ │ │ ├── ZXVCardResultParser.m │ │ │ ├── ZXVEventResultParser.h │ │ │ ├── ZXVEventResultParser.m │ │ │ ├── ZXVINParsedResult.h │ │ │ ├── ZXVINParsedResult.m │ │ │ ├── ZXVINResultParser.h │ │ │ ├── ZXVINResultParser.m │ │ │ ├── ZXWifiParsedResult.h │ │ │ ├── ZXWifiParsedResult.m │ │ │ ├── ZXWifiResultParser.h │ │ │ └── ZXWifiResultParser.m │ ├── common │ │ ├── ZXBitArray.h │ │ ├── ZXBitArray.m │ │ ├── ZXBitMatrix.h │ │ ├── ZXBitMatrix.m │ │ ├── ZXBitSource.h │ │ ├── ZXBitSource.m │ │ ├── ZXBoolArray.h │ │ ├── ZXBoolArray.m │ │ ├── ZXByteArray.h │ │ ├── ZXByteArray.m │ │ ├── ZXCharacterSetECI.h │ │ ├── ZXCharacterSetECI.m │ │ ├── ZXDecoderResult.h │ │ ├── ZXDecoderResult.m │ │ ├── ZXDefaultGridSampler.h │ │ ├── ZXDefaultGridSampler.m │ │ ├── ZXDetectorResult.h │ │ ├── ZXDetectorResult.m │ │ ├── ZXGlobalHistogramBinarizer.h │ │ ├── ZXGlobalHistogramBinarizer.m │ │ ├── ZXGridSampler.h │ │ ├── ZXGridSampler.m │ │ ├── ZXHybridBinarizer.h │ │ ├── ZXHybridBinarizer.m │ │ ├── ZXIntArray.h │ │ ├── ZXIntArray.m │ │ ├── ZXPerspectiveTransform.h │ │ ├── ZXPerspectiveTransform.m │ │ ├── ZXStringUtils.h │ │ ├── ZXStringUtils.m │ │ ├── detector │ │ │ ├── ZXMathUtils.h │ │ │ ├── ZXMathUtils.m │ │ │ ├── ZXMonochromeRectangleDetector.h │ │ │ ├── ZXMonochromeRectangleDetector.m │ │ │ ├── ZXWhiteRectangleDetector.h │ │ │ └── ZXWhiteRectangleDetector.m │ │ └── reedsolomon │ │ │ ├── ZXGenericGF.h │ │ │ ├── ZXGenericGF.m │ │ │ ├── ZXGenericGFPoly.h │ │ │ ├── ZXGenericGFPoly.m │ │ │ ├── ZXReedSolomonDecoder.h │ │ │ ├── ZXReedSolomonDecoder.m │ │ │ ├── ZXReedSolomonEncoder.h │ │ │ └── ZXReedSolomonEncoder.m │ ├── core │ │ ├── ZXBarcodeFormat.h │ │ ├── ZXBinarizer.h │ │ ├── ZXBinarizer.m │ │ ├── ZXBinaryBitmap.h │ │ ├── ZXBinaryBitmap.m │ │ ├── ZXByteMatrix.h │ │ ├── ZXByteMatrix.m │ │ ├── ZXDecodeHints.h │ │ ├── ZXDecodeHints.m │ │ ├── ZXDimension.h │ │ ├── ZXDimension.m │ │ ├── ZXEncodeHints.h │ │ ├── ZXEncodeHints.m │ │ ├── ZXErrors.h │ │ ├── ZXErrors.m │ │ ├── ZXInvertedLuminanceSource.h │ │ ├── ZXInvertedLuminanceSource.m │ │ ├── ZXLuminanceSource.h │ │ ├── ZXLuminanceSource.m │ │ ├── ZXPlanarYUVLuminanceSource.h │ │ ├── ZXPlanarYUVLuminanceSource.m │ │ ├── ZXRGBLuminanceSource.h │ │ ├── ZXRGBLuminanceSource.m │ │ ├── ZXReader.h │ │ ├── ZXResult.h │ │ ├── ZXResult.m │ │ ├── ZXResultMetadataType.h │ │ ├── ZXResultPoint.h │ │ ├── ZXResultPoint.m │ │ ├── ZXResultPointCallback.h │ │ ├── ZXWriter.h │ │ └── ZXingObjCCore.h │ ├── datamatrix │ │ ├── ZXDataMatrixReader.h │ │ ├── ZXDataMatrixReader.m │ │ ├── ZXDataMatrixWriter.h │ │ ├── ZXDataMatrixWriter.m │ │ ├── ZXingObjCDataMatrix.h │ │ ├── decoder │ │ │ ├── ZXDataMatrixBitMatrixParser.h │ │ │ ├── ZXDataMatrixBitMatrixParser.m │ │ │ ├── ZXDataMatrixDataBlock.h │ │ │ ├── ZXDataMatrixDataBlock.m │ │ │ ├── ZXDataMatrixDecodedBitStreamParser.h │ │ │ ├── ZXDataMatrixDecodedBitStreamParser.m │ │ │ ├── ZXDataMatrixDecoder.h │ │ │ ├── ZXDataMatrixDecoder.m │ │ │ ├── ZXDataMatrixVersion.h │ │ │ └── ZXDataMatrixVersion.m │ │ ├── detector │ │ │ ├── ZXDataMatrixDetector.h │ │ │ └── ZXDataMatrixDetector.m │ │ └── encoder │ │ │ ├── ZXDataMatrixASCIIEncoder.h │ │ │ ├── ZXDataMatrixASCIIEncoder.m │ │ │ ├── ZXDataMatrixBase256Encoder.h │ │ │ ├── ZXDataMatrixBase256Encoder.m │ │ │ ├── ZXDataMatrixC40Encoder.h │ │ │ ├── ZXDataMatrixC40Encoder.m │ │ │ ├── ZXDataMatrixDefaultPlacement.h │ │ │ ├── ZXDataMatrixDefaultPlacement.m │ │ │ ├── ZXDataMatrixEdifactEncoder.h │ │ │ ├── ZXDataMatrixEdifactEncoder.m │ │ │ ├── ZXDataMatrixEncoder.h │ │ │ ├── ZXDataMatrixEncoderContext.h │ │ │ ├── ZXDataMatrixEncoderContext.m │ │ │ ├── ZXDataMatrixErrorCorrection.h │ │ │ ├── ZXDataMatrixErrorCorrection.m │ │ │ ├── ZXDataMatrixHighLevelEncoder.h │ │ │ ├── ZXDataMatrixHighLevelEncoder.m │ │ │ ├── ZXDataMatrixSymbolInfo.h │ │ │ ├── ZXDataMatrixSymbolInfo.m │ │ │ ├── ZXDataMatrixSymbolInfo144.h │ │ │ ├── ZXDataMatrixSymbolInfo144.m │ │ │ ├── ZXDataMatrixTextEncoder.h │ │ │ ├── ZXDataMatrixTextEncoder.m │ │ │ ├── ZXDataMatrixX12Encoder.h │ │ │ └── ZXDataMatrixX12Encoder.m │ ├── maxicode │ │ ├── ZXMaxiCodeReader.h │ │ ├── ZXMaxiCodeReader.m │ │ ├── ZXingObjCMaxiCode.h │ │ └── decoder │ │ │ ├── ZXMaxiCodeBitMatrixParser.h │ │ │ ├── ZXMaxiCodeBitMatrixParser.m │ │ │ ├── ZXMaxiCodeDecodedBitStreamParser.h │ │ │ ├── ZXMaxiCodeDecodedBitStreamParser.m │ │ │ ├── ZXMaxiCodeDecoder.h │ │ │ └── ZXMaxiCodeDecoder.m │ ├── multi │ │ ├── ZXByQuadrantReader.h │ │ ├── ZXByQuadrantReader.m │ │ ├── ZXGenericMultipleBarcodeReader.h │ │ ├── ZXGenericMultipleBarcodeReader.m │ │ └── ZXMultipleBarcodeReader.h │ ├── oned │ │ ├── ZXCodaBarReader.h │ │ ├── ZXCodaBarReader.m │ │ ├── ZXCodaBarWriter.h │ │ ├── ZXCodaBarWriter.m │ │ ├── ZXCode128Reader.h │ │ ├── ZXCode128Reader.m │ │ ├── ZXCode128Writer.h │ │ ├── ZXCode128Writer.m │ │ ├── ZXCode39Reader.h │ │ ├── ZXCode39Reader.m │ │ ├── ZXCode39Writer.h │ │ ├── ZXCode39Writer.m │ │ ├── ZXCode93Reader.h │ │ ├── ZXCode93Reader.m │ │ ├── ZXEAN13Reader.h │ │ ├── ZXEAN13Reader.m │ │ ├── ZXEAN13Writer.h │ │ ├── ZXEAN13Writer.m │ │ ├── ZXEAN8Reader.h │ │ ├── ZXEAN8Reader.m │ │ ├── ZXEAN8Writer.h │ │ ├── ZXEAN8Writer.m │ │ ├── ZXEANManufacturerOrgSupport.h │ │ ├── ZXEANManufacturerOrgSupport.m │ │ ├── ZXITFReader.h │ │ ├── ZXITFReader.m │ │ ├── ZXITFWriter.h │ │ ├── ZXITFWriter.m │ │ ├── ZXMultiFormatOneDReader.h │ │ ├── ZXMultiFormatOneDReader.m │ │ ├── ZXMultiFormatUPCEANReader.h │ │ ├── ZXMultiFormatUPCEANReader.m │ │ ├── ZXOneDReader.h │ │ ├── ZXOneDReader.m │ │ ├── ZXOneDimensionalCodeWriter.h │ │ ├── ZXOneDimensionalCodeWriter.m │ │ ├── ZXUPCAReader.h │ │ ├── ZXUPCAReader.m │ │ ├── ZXUPCAWriter.h │ │ ├── ZXUPCAWriter.m │ │ ├── ZXUPCEANExtension2Support.h │ │ ├── ZXUPCEANExtension2Support.m │ │ ├── ZXUPCEANExtension5Support.h │ │ ├── ZXUPCEANExtension5Support.m │ │ ├── ZXUPCEANExtensionSupport.h │ │ ├── ZXUPCEANExtensionSupport.m │ │ ├── ZXUPCEANReader.h │ │ ├── ZXUPCEANReader.m │ │ ├── ZXUPCEANWriter.h │ │ ├── ZXUPCEANWriter.m │ │ ├── ZXUPCEReader.h │ │ ├── ZXUPCEReader.m │ │ ├── ZXUPCEWriter.h │ │ ├── ZXUPCEWriter.m │ │ ├── ZXingObjCOneD.h │ │ └── rss │ │ │ ├── ZXAbstractRSSReader.h │ │ │ ├── ZXAbstractRSSReader.m │ │ │ ├── ZXRSS14Reader.h │ │ │ ├── ZXRSS14Reader.m │ │ │ ├── ZXRSSDataCharacter.h │ │ │ ├── ZXRSSDataCharacter.m │ │ │ ├── ZXRSSFinderPattern.h │ │ │ ├── ZXRSSFinderPattern.m │ │ │ ├── ZXRSSPair.h │ │ │ ├── ZXRSSPair.m │ │ │ ├── ZXRSSUtils.h │ │ │ ├── ZXRSSUtils.m │ │ │ └── expanded │ │ │ ├── ZXBitArrayBuilder.h │ │ │ ├── ZXBitArrayBuilder.m │ │ │ ├── ZXRSSExpandedPair.h │ │ │ ├── ZXRSSExpandedPair.m │ │ │ ├── ZXRSSExpandedReader.h │ │ │ ├── ZXRSSExpandedReader.m │ │ │ ├── ZXRSSExpandedRow.h │ │ │ ├── ZXRSSExpandedRow.m │ │ │ └── decoders │ │ │ ├── ZXAI013103decoder.h │ │ │ ├── ZXAI013103decoder.m │ │ │ ├── ZXAI01320xDecoder.h │ │ │ ├── ZXAI01320xDecoder.m │ │ │ ├── ZXAI01392xDecoder.h │ │ │ ├── ZXAI01392xDecoder.m │ │ │ ├── ZXAI01393xDecoder.h │ │ │ ├── ZXAI01393xDecoder.m │ │ │ ├── ZXAI013x0x1xDecoder.h │ │ │ ├── ZXAI013x0x1xDecoder.m │ │ │ ├── ZXAI013x0xDecoder.h │ │ │ ├── ZXAI013x0xDecoder.m │ │ │ ├── ZXAI01AndOtherAIs.h │ │ │ ├── ZXAI01AndOtherAIs.m │ │ │ ├── ZXAI01decoder.h │ │ │ ├── ZXAI01decoder.m │ │ │ ├── ZXAI01weightDecoder.h │ │ │ ├── ZXAI01weightDecoder.m │ │ │ ├── ZXAbstractExpandedDecoder.h │ │ │ ├── ZXAbstractExpandedDecoder.m │ │ │ ├── ZXAnyAIDecoder.h │ │ │ ├── ZXAnyAIDecoder.m │ │ │ ├── ZXRSSExpandedBlockParsedResult.h │ │ │ ├── ZXRSSExpandedBlockParsedResult.m │ │ │ ├── ZXRSSExpandedCurrentParsingState.h │ │ │ ├── ZXRSSExpandedCurrentParsingState.m │ │ │ ├── ZXRSSExpandedDecodedChar.h │ │ │ ├── ZXRSSExpandedDecodedChar.m │ │ │ ├── ZXRSSExpandedDecodedInformation.h │ │ │ ├── ZXRSSExpandedDecodedInformation.m │ │ │ ├── ZXRSSExpandedDecodedNumeric.h │ │ │ ├── ZXRSSExpandedDecodedNumeric.m │ │ │ ├── ZXRSSExpandedDecodedObject.h │ │ │ ├── ZXRSSExpandedDecodedObject.m │ │ │ ├── ZXRSSExpandedFieldParser.h │ │ │ ├── ZXRSSExpandedFieldParser.m │ │ │ ├── ZXRSSExpandedGeneralAppIdDecoder.h │ │ │ └── ZXRSSExpandedGeneralAppIdDecoder.m │ ├── pdf417 │ │ ├── ZXPDF417Common.h │ │ ├── ZXPDF417Common.m │ │ ├── ZXPDF417Reader.h │ │ ├── ZXPDF417Reader.m │ │ ├── ZXPDF417ResultMetadata.h │ │ ├── ZXPDF417ResultMetadata.m │ │ ├── ZXPDF417Writer.h │ │ ├── ZXPDF417Writer.m │ │ ├── ZXingObjCPDF417.h │ │ ├── decoder │ │ │ ├── ZXPDF417BarcodeMetadata.h │ │ │ ├── ZXPDF417BarcodeMetadata.m │ │ │ ├── ZXPDF417BarcodeValue.h │ │ │ ├── ZXPDF417BarcodeValue.m │ │ │ ├── ZXPDF417BoundingBox.h │ │ │ ├── ZXPDF417BoundingBox.m │ │ │ ├── ZXPDF417Codeword.h │ │ │ ├── ZXPDF417Codeword.m │ │ │ ├── ZXPDF417CodewordDecoder.h │ │ │ ├── ZXPDF417CodewordDecoder.m │ │ │ ├── ZXPDF417DecodedBitStreamParser.h │ │ │ ├── ZXPDF417DecodedBitStreamParser.m │ │ │ ├── ZXPDF417DetectionResult.h │ │ │ ├── ZXPDF417DetectionResult.m │ │ │ ├── ZXPDF417DetectionResultColumn.h │ │ │ ├── ZXPDF417DetectionResultColumn.m │ │ │ ├── ZXPDF417DetectionResultRowIndicatorColumn.h │ │ │ ├── ZXPDF417DetectionResultRowIndicatorColumn.m │ │ │ ├── ZXPDF417ScanningDecoder.h │ │ │ ├── ZXPDF417ScanningDecoder.m │ │ │ └── ec │ │ │ │ ├── ZXModulusGF.h │ │ │ │ ├── ZXModulusGF.m │ │ │ │ ├── ZXModulusPoly.h │ │ │ │ ├── ZXModulusPoly.m │ │ │ │ ├── ZXPDF417ECErrorCorrection.h │ │ │ │ └── ZXPDF417ECErrorCorrection.m │ │ ├── detector │ │ │ ├── ZXPDF417Detector.h │ │ │ ├── ZXPDF417Detector.m │ │ │ ├── ZXPDF417DetectorResult.h │ │ │ └── ZXPDF417DetectorResult.m │ │ └── encoder │ │ │ ├── ZXPDF417.h │ │ │ ├── ZXPDF417.m │ │ │ ├── ZXPDF417BarcodeMatrix.h │ │ │ ├── ZXPDF417BarcodeMatrix.m │ │ │ ├── ZXPDF417BarcodeRow.h │ │ │ ├── ZXPDF417BarcodeRow.m │ │ │ ├── ZXPDF417Dimensions.h │ │ │ ├── ZXPDF417Dimensions.m │ │ │ ├── ZXPDF417ErrorCorrection.h │ │ │ ├── ZXPDF417ErrorCorrection.m │ │ │ ├── ZXPDF417HighLevelEncoder.h │ │ │ └── ZXPDF417HighLevelEncoder.m │ └── qrcode │ │ ├── ZXQRCodeReader.h │ │ ├── ZXQRCodeReader.m │ │ ├── ZXQRCodeWriter.h │ │ ├── ZXQRCodeWriter.m │ │ ├── ZXingObjCQRCode.h │ │ ├── decoder │ │ ├── ZXQRCodeBitMatrixParser.h │ │ ├── ZXQRCodeBitMatrixParser.m │ │ ├── ZXQRCodeDataBlock.h │ │ ├── ZXQRCodeDataBlock.m │ │ ├── ZXQRCodeDataMask.h │ │ ├── ZXQRCodeDataMask.m │ │ ├── ZXQRCodeDecodedBitStreamParser.h │ │ ├── ZXQRCodeDecodedBitStreamParser.m │ │ ├── ZXQRCodeDecoder.h │ │ ├── ZXQRCodeDecoder.m │ │ ├── ZXQRCodeDecoderMetaData.h │ │ ├── ZXQRCodeDecoderMetaData.m │ │ ├── ZXQRCodeErrorCorrectionLevel.h │ │ ├── ZXQRCodeErrorCorrectionLevel.m │ │ ├── ZXQRCodeFormatInformation.h │ │ ├── ZXQRCodeFormatInformation.m │ │ ├── ZXQRCodeMode.h │ │ ├── ZXQRCodeMode.m │ │ ├── ZXQRCodeVersion.h │ │ └── ZXQRCodeVersion.m │ │ ├── detector │ │ ├── ZXQRCodeAlignmentPattern.h │ │ ├── ZXQRCodeAlignmentPattern.m │ │ ├── ZXQRCodeAlignmentPatternFinder.h │ │ ├── ZXQRCodeAlignmentPatternFinder.m │ │ ├── ZXQRCodeDetector.h │ │ ├── ZXQRCodeDetector.m │ │ ├── ZXQRCodeFinderPattern.h │ │ ├── ZXQRCodeFinderPattern.m │ │ ├── ZXQRCodeFinderPatternFinder.h │ │ ├── ZXQRCodeFinderPatternFinder.m │ │ ├── ZXQRCodeFinderPatternInfo.h │ │ └── ZXQRCodeFinderPatternInfo.m │ │ ├── encoder │ │ ├── ZXQRCode.h │ │ ├── ZXQRCode.m │ │ ├── ZXQRCodeBlockPair.h │ │ ├── ZXQRCodeBlockPair.m │ │ ├── ZXQRCodeEncoder.h │ │ ├── ZXQRCodeEncoder.m │ │ ├── ZXQRCodeMaskUtil.h │ │ ├── ZXQRCodeMaskUtil.m │ │ ├── ZXQRCodeMatrixUtil.h │ │ └── ZXQRCodeMatrixUtil.m │ │ └── multi │ │ ├── ZXQRCodeMultiReader.h │ │ ├── ZXQRCodeMultiReader.m │ │ └── detector │ │ ├── ZXMultiDetector.h │ │ ├── ZXMultiDetector.m │ │ ├── ZXMultiFinderPatternFinder.h │ │ └── ZXMultiFinderPatternFinder.m │ ├── ios-Info.plist │ ├── ios-Prefix.pch │ ├── mac-Info.plist │ └── osx-Prefix.pch ├── package.json ├── tsconfig.json └── types └── index.d.ts /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *.lock -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | 2 | examples 3 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/README.md -------------------------------------------------------------------------------- /RNBluetoothEscposPrinter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/RNBluetoothEscposPrinter.podspec -------------------------------------------------------------------------------- /android/.gradle/7.4.2/checksums/md5-checksums.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/.gradle/7.4.2/checksums/md5-checksums.bin -------------------------------------------------------------------------------- /android/.gradle/7.4.2/checksums/sha1-checksums.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/.gradle/7.4.2/checksums/sha1-checksums.bin -------------------------------------------------------------------------------- /android/.gradle/7.4.2/dependencies-accessors/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/.gradle/7.4.2/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/.gradle/7.4.2/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Fri Feb 24 14:39:16 GST 2023 2 | gradle.version=7.4.2 3 | -------------------------------------------------------------------------------- /android/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/build/intermediates/annotation_processor_list/release/annotationProcessors.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /android/build/intermediates/annotations_typedef_file/release/extractReleaseAnnotations/typedefs.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-af.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-am.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-ar.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-as.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-as.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-az.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-be.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-bg.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-bn.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-bs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-bs.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-ca.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-cs.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-da.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-de.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-el.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-en-rAU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-en-rAU.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-en-rCA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-en-rCA.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-en-rGB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-en-rGB.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-en-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-en-rIN.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-en-rXC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-en-rXC.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-es-rUS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-es-rUS.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-es.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-et.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-eu.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-fa.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-fi.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-fr-rCA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-fr-rCA.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-fr.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-gl.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-gu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-gu.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-hdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-hdpi-v4.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-hi.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-hr.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-hu.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-hy.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-in.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-is.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-it.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-iw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-iw.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-ja.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-ka.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-kk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-kk.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-km.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-kn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-kn.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-ko.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-ky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-ky.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-land.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-land.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-lo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-lo.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-lt.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-lv.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-mk.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-ml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-ml.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-mn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-mn.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-mr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-mr.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-ms.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-my.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-my.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-nb.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-ne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-ne.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-nl.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-or.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-or.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-pa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-pa.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-pl.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-port.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-port.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-pt-rBR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-pt-rBR.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-pt-rPT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-pt-rPT.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-pt.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-ro.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-ru.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-si.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-sk.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-sl.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-sq.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-sr.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-sv.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-sw.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-ta.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-te.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-te.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-th.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-tl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-tl.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-tr.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-uk.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-ur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-ur.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-uz.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-v16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-v16.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-v17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-v17.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-v18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-v18.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-v21.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-v22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-v22.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-v23.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-v24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-v24.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-v25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-v25.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-v26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-v26.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-v28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-v28.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-vi.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-zh-rCN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-zh-rCN.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-zh-rHK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-zh-rHK.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-zh-rTW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-zh-rTW.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values-zu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values-zu.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi-v2/values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/multi-v2/values.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/single/anim.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/color-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/single/color-v21.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/color-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/single/color-v23.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/single/color.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/drawable-hdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/single/drawable-hdpi-v4.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/drawable-mdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/single/drawable-mdpi-v4.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/drawable-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/single/drawable-v21.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/drawable-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/single/drawable-v23.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/drawable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/single/drawable.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/layout-v16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/single/layout-v16.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/layout-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/single/layout-v21.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/layout-v26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/single/layout-v26.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/layout-watch-v20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/single/layout-watch-v20.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/single/layout.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/xml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/blame/res/release/single/xml.json -------------------------------------------------------------------------------- /android/build/intermediates/compile_library_classes/release/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/compile_library_classes/release/classes.jar -------------------------------------------------------------------------------- /android/build/intermediates/incremental/mergeReleaseResources/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/incremental/mergeReleaseResources/merger.xml -------------------------------------------------------------------------------- /android/build/intermediates/incremental/mergeReleaseShaders/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/incremental/mergeReleaseShaders/merger.xml -------------------------------------------------------------------------------- /android/build/intermediates/incremental/packageReleaseAssets/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/incremental/packageReleaseAssets/merger.xml -------------------------------------------------------------------------------- /android/build/intermediates/incremental/packageReleaseResources/compile-file-map.properties: -------------------------------------------------------------------------------- 1 | #Sat Jan 09 14:20:51 EET 2021 2 | -------------------------------------------------------------------------------- /android/build/intermediates/incremental/packageReleaseResources/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/incremental/packageReleaseResources/merger.xml -------------------------------------------------------------------------------- /android/build/intermediates/incremental/release-mergeJavaRes/merge-state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/incremental/release-mergeJavaRes/merge-state -------------------------------------------------------------------------------- /android/build/intermediates/library_java_res/release/res.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/library_java_res/release/res.jar -------------------------------------------------------------------------------- /android/build/intermediates/library_manifest/release/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/library_manifest/release/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build/intermediates/local_only_symbol_list/release/parseReleaseLibraryResources/R-def.txt: -------------------------------------------------------------------------------- 1 | R_DEF: Internal format may change without notice 2 | local 3 | -------------------------------------------------------------------------------- /android/build/intermediates/merged_java_res/release/out.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/merged_java_res/release/out.jar -------------------------------------------------------------------------------- /android/build/intermediates/merged_manifests/release/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/merged_manifests/release/output.json -------------------------------------------------------------------------------- /android/build/intermediates/packaged-classes/release/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/packaged-classes/release/classes.jar -------------------------------------------------------------------------------- /android/build/intermediates/res/compiled/release/anim_abc_fade_in.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/compiled/release/anim_abc_fade_in.xml.flat -------------------------------------------------------------------------------- /android/build/intermediates/res/compiled/release/layout_fps_view.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/compiled/release/layout_fps_view.xml.flat -------------------------------------------------------------------------------- /android/build/intermediates/res/compiled/release/values_values.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/compiled/release/values_values.arsc.flat -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/anim/abc_fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/anim/abc_fade_in.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/anim/abc_fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/anim/abc_fade_out.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/anim/abc_popup_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/anim/abc_popup_enter.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/anim/abc_popup_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/anim/abc_popup_exit.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/anim/abc_slide_in_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/anim/abc_slide_in_top.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/anim/abc_slide_out_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/anim/abc_slide_out_top.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/anim/abc_tooltip_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/anim/abc_tooltip_enter.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/anim/abc_tooltip_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/anim/abc_tooltip_exit.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/anim/catalyst_fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/anim/catalyst_fade_in.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/anim/catalyst_fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/anim/catalyst_fade_out.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/anim/catalyst_slide_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/anim/catalyst_slide_up.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/color/abc_tint_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/color/abc_tint_default.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/color/abc_tint_edittext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/color/abc_tint_edittext.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/color/abc_tint_spinner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/color/abc_tint_spinner.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/layout/abc_search_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/layout/abc_search_view.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/layout/abc_tooltip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/layout/abc_tooltip.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/layout/dev_loading_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/layout/dev_loading_view.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/layout/fps_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/layout/fps_view.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/layout/redbox_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/layout/redbox_view.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-af/values-af.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-af/values-af.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-am/values-am.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-am/values-am.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-ar/values-ar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-ar/values-ar.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-as/values-as.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-as/values-as.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-az/values-az.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-az/values-az.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-be/values-be.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-be/values-be.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-bg/values-bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-bg/values-bg.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-bn/values-bn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-bn/values-bn.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-bs/values-bs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-bs/values-bs.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-ca/values-ca.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-ca/values-ca.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-cs/values-cs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-cs/values-cs.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-da/values-da.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-da/values-da.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-de/values-de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-de/values-de.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-el/values-el.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-el/values-el.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-es/values-es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-es/values-es.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-et/values-et.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-et/values-et.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-eu/values-eu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-eu/values-eu.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-fa/values-fa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-fa/values-fa.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-fi/values-fi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-fi/values-fi.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-fr/values-fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-fr/values-fr.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-gl/values-gl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-gl/values-gl.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-gu/values-gu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-gu/values-gu.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-hi/values-hi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-hi/values-hi.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-hr/values-hr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-hr/values-hr.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-hu/values-hu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-hu/values-hu.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-hy/values-hy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-hy/values-hy.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-in/values-in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-in/values-in.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-is/values-is.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-is/values-is.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-it/values-it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-it/values-it.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-iw/values-iw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-iw/values-iw.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-ja/values-ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-ja/values-ja.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-ka/values-ka.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-ka/values-ka.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-kk/values-kk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-kk/values-kk.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-km/values-km.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-km/values-km.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-kn/values-kn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-kn/values-kn.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-ko/values-ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-ko/values-ko.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-ky/values-ky.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-ky/values-ky.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-land/values-land.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-land/values-land.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-lo/values-lo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-lo/values-lo.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-lt/values-lt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-lt/values-lt.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-lv/values-lv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-lv/values-lv.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-mk/values-mk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-mk/values-mk.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-ml/values-ml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-ml/values-ml.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-mn/values-mn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-mn/values-mn.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-mr/values-mr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-mr/values-mr.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-ms/values-ms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-ms/values-ms.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-my/values-my.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-my/values-my.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-nb/values-nb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-nb/values-nb.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-ne/values-ne.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-ne/values-ne.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-nl/values-nl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-nl/values-nl.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-or/values-or.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-or/values-or.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-pa/values-pa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-pa/values-pa.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-pl/values-pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-pl/values-pl.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-port/values-port.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-port/values-port.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-pt/values-pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-pt/values-pt.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-ro/values-ro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-ro/values-ro.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-ru/values-ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-ru/values-ru.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-si/values-si.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-si/values-si.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-sk/values-sk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-sk/values-sk.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-sl/values-sl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-sl/values-sl.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-sq/values-sq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-sq/values-sq.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-sr/values-sr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-sr/values-sr.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-sv/values-sv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-sv/values-sv.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-sw/values-sw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-sw/values-sw.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-ta/values-ta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-ta/values-ta.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-te/values-te.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-te/values-te.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-th/values-th.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-th/values-th.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-tl/values-tl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-tl/values-tl.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-tr/values-tr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-tr/values-tr.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-uk/values-uk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-uk/values-uk.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-ur/values-ur.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-ur/values-ur.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-uz/values-uz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-uz/values-uz.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-v16/values-v16.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-v16/values-v16.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-v17/values-v17.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-v17/values-v17.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-v18/values-v18.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-v18/values-v18.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-v21/values-v21.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-v21/values-v21.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-v22/values-v22.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-v22/values-v22.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-v23/values-v23.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-v23/values-v23.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-v24/values-v24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-v24/values-v24.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-v25/values-v25.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-v25/values-v25.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-v26/values-v26.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-v26/values-v26.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-v28/values-v28.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-v28/values-v28.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-vi/values-vi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-vi/values-vi.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-zu/values-zu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values-zu/values-zu.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/values/values.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/xml/rn_dev_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/res/merged/release/xml/rn_dev_preferences.xml -------------------------------------------------------------------------------- /android/build/intermediates/runtime_library_classes/release/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/runtime_library_classes/release/classes.jar -------------------------------------------------------------------------------- /android/build/intermediates/symbols/release/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/intermediates/symbols/release/R.txt -------------------------------------------------------------------------------- /android/build/outputs/logs/manifest-merger-release-report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/build/outputs/logs/manifest-merger-release-report.txt -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/gen/cn/jystudio/bluetooth/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/src/main/gen/cn/jystudio/bluetooth/BuildConfig.java -------------------------------------------------------------------------------- /android/src/main/gen/cn/jystudio/bluetooth/Manifest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/src/main/gen/cn/jystudio/bluetooth/Manifest.java -------------------------------------------------------------------------------- /android/src/main/gen/cn/jystudio/bluetooth/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/src/main/gen/cn/jystudio/bluetooth/R.java -------------------------------------------------------------------------------- /android/src/main/java/cn/jystudio/bluetooth/BluetoothService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/src/main/java/cn/jystudio/bluetooth/BluetoothService.java -------------------------------------------------------------------------------- /android/src/main/java/cn/jystudio/bluetooth/RNBluetoothManagerModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/src/main/java/cn/jystudio/bluetooth/RNBluetoothManagerModule.java -------------------------------------------------------------------------------- /android/src/main/java/cn/jystudio/bluetooth/tsc/TscCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/src/main/java/cn/jystudio/bluetooth/tsc/TscCommand.java -------------------------------------------------------------------------------- /android/src/main/main1.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/android/src/main/main1.iml -------------------------------------------------------------------------------- /docs/ble_service_ids.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/docs/ble_service_ids.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/index.js -------------------------------------------------------------------------------- /ios/ColumnSplitedString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ColumnSplitedString.h -------------------------------------------------------------------------------- /ios/ColumnSplitedString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ColumnSplitedString.m -------------------------------------------------------------------------------- /ios/ImageUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ImageUtils.h -------------------------------------------------------------------------------- /ios/ImageUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ImageUtils.m -------------------------------------------------------------------------------- /ios/PrintColumnBleWriteDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/PrintColumnBleWriteDelegate.h -------------------------------------------------------------------------------- /ios/PrintColumnBleWriteDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/PrintColumnBleWriteDelegate.m -------------------------------------------------------------------------------- /ios/PrintImageBleWriteDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/PrintImageBleWriteDelegate.h -------------------------------------------------------------------------------- /ios/PrintImageBleWriteDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/PrintImageBleWriteDelegate.m -------------------------------------------------------------------------------- /ios/RNBluetoothEscposPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/RNBluetoothEscposPrinter.h -------------------------------------------------------------------------------- /ios/RNBluetoothEscposPrinter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/RNBluetoothEscposPrinter.m -------------------------------------------------------------------------------- /ios/RNBluetoothEscposPrinter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/RNBluetoothEscposPrinter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/RNBluetoothEscposPrinter.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/RNBluetoothEscposPrinter.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/RNBluetoothManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/RNBluetoothManager.h -------------------------------------------------------------------------------- /ios/RNBluetoothManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/RNBluetoothManager.m -------------------------------------------------------------------------------- /ios/RNBluetoothTscPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/RNBluetoothTscPrinter.h -------------------------------------------------------------------------------- /ios/RNBluetoothTscPrinter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/RNBluetoothTscPrinter.m -------------------------------------------------------------------------------- /ios/RNTscCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/RNTscCommand.h -------------------------------------------------------------------------------- /ios/RNTscCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/RNTscCommand.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj merge=union 2 | -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/.npmignore -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/AUTHORS -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/AUTHORS-ZXingObjC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/AUTHORS-ZXingObjC -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/COPYING -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/NOTICE -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/README.md -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC.podspec -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/ZXMultiFormatReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/ZXMultiFormatReader.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/ZXMultiFormatReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/ZXMultiFormatReader.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/ZXMultiFormatWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/ZXMultiFormatWriter.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/ZXMultiFormatWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/ZXMultiFormatWriter.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/ZXingObjC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/ZXingObjC.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/aztec/ZXAztecDetectorResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/aztec/ZXAztecDetectorResult.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/aztec/ZXAztecDetectorResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/aztec/ZXAztecDetectorResult.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/aztec/ZXAztecReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/aztec/ZXAztecReader.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/aztec/ZXAztecReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/aztec/ZXAztecReader.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/aztec/ZXAztecWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/aztec/ZXAztecWriter.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/aztec/ZXAztecWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/aztec/ZXAztecWriter.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/aztec/ZXingObjCAztec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/aztec/ZXingObjCAztec.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/aztec/decoder/ZXAztecDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/aztec/decoder/ZXAztecDecoder.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/aztec/decoder/ZXAztecDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/aztec/decoder/ZXAztecDecoder.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/aztec/detector/ZXAztecDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/aztec/detector/ZXAztecDetector.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/aztec/detector/ZXAztecDetector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/aztec/detector/ZXAztecDetector.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecBinaryShiftToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecBinaryShiftToken.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecBinaryShiftToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecBinaryShiftToken.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecCode.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecCode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecCode.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecEncoder.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecEncoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecEncoder.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecHighLevelEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecHighLevelEncoder.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecHighLevelEncoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecHighLevelEncoder.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecSimpleToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecSimpleToken.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecSimpleToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecSimpleToken.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecState.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecState.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecToken.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/aztec/encoder/ZXAztecToken.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/ZXCGImageLuminanceSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/ZXCGImageLuminanceSource.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/ZXCGImageLuminanceSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/ZXCGImageLuminanceSource.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/ZXCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/ZXCapture.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/ZXCapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/ZXCapture.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/ZXCaptureDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/ZXCaptureDelegate.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/ZXImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/ZXImage.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/ZXImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/ZXImage.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXAbstractDoCoMoResultParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXAbstractDoCoMoResultParser.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXAbstractDoCoMoResultParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXAbstractDoCoMoResultParser.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXAddressBookAUResultParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXAddressBookAUResultParser.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXAddressBookAUResultParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXAddressBookAUResultParser.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXAddressBookParsedResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXAddressBookParsedResult.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXAddressBookParsedResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXAddressBookParsedResult.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXBizcardResultParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXBizcardResultParser.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXBizcardResultParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXBizcardResultParser.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXBookmarkDoCoMoResultParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXBookmarkDoCoMoResultParser.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXBookmarkDoCoMoResultParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXBookmarkDoCoMoResultParser.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXCalendarParsedResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXCalendarParsedResult.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXCalendarParsedResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXCalendarParsedResult.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXEmailAddressParsedResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXEmailAddressParsedResult.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXEmailAddressParsedResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXEmailAddressParsedResult.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXEmailAddressResultParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXEmailAddressResultParser.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXEmailAddressResultParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXEmailAddressResultParser.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXEmailDoCoMoResultParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXEmailDoCoMoResultParser.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXEmailDoCoMoResultParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXEmailDoCoMoResultParser.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXGeoParsedResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXGeoParsedResult.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXGeoParsedResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXGeoParsedResult.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXGeoResultParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXGeoResultParser.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXGeoResultParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXGeoResultParser.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXISBNParsedResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXISBNParsedResult.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXISBNParsedResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXISBNParsedResult.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXISBNResultParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXISBNResultParser.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXISBNResultParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXISBNResultParser.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXParsedResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXParsedResult.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXParsedResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXParsedResult.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXParsedResultType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXParsedResultType.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXProductParsedResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXProductParsedResult.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXProductParsedResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXProductParsedResult.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXProductResultParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXProductResultParser.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXProductResultParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXProductResultParser.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXResultParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXResultParser.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXResultParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXResultParser.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXSMSMMSResultParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXSMSMMSResultParser.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXSMSMMSResultParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXSMSMMSResultParser.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXSMSParsedResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXSMSParsedResult.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXSMSParsedResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXSMSParsedResult.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXSMSTOMMSTOResultParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXSMSTOMMSTOResultParser.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXSMSTOMMSTOResultParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXSMSTOMMSTOResultParser.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXSMTPResultParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXSMTPResultParser.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXSMTPResultParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXSMTPResultParser.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXTelParsedResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXTelParsedResult.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXTelParsedResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXTelParsedResult.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXTelResultParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXTelResultParser.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXTelResultParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXTelResultParser.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXTextParsedResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXTextParsedResult.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXTextParsedResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXTextParsedResult.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXURIParsedResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXURIParsedResult.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXURIParsedResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXURIParsedResult.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXURIResultParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXURIResultParser.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXURIResultParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXURIResultParser.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXURLTOResultParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXURLTOResultParser.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXURLTOResultParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXURLTOResultParser.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXVCardResultParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXVCardResultParser.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXVCardResultParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXVCardResultParser.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXVEventResultParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXVEventResultParser.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXVEventResultParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXVEventResultParser.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXVINParsedResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXVINParsedResult.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXVINParsedResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXVINParsedResult.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXVINResultParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXVINResultParser.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXVINResultParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXVINResultParser.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXWifiParsedResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXWifiParsedResult.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXWifiParsedResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXWifiParsedResult.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXWifiResultParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXWifiResultParser.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXWifiResultParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/client/result/ZXWifiResultParser.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXBitArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXBitArray.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXBitArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXBitArray.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXBitMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXBitMatrix.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXBitMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXBitMatrix.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXBitSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXBitSource.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXBitSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXBitSource.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXBoolArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXBoolArray.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXBoolArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXBoolArray.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXByteArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXByteArray.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXByteArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXByteArray.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXCharacterSetECI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXCharacterSetECI.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXCharacterSetECI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXCharacterSetECI.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXDecoderResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXDecoderResult.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXDecoderResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXDecoderResult.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXDefaultGridSampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXDefaultGridSampler.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXDefaultGridSampler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXDefaultGridSampler.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXDetectorResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXDetectorResult.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXDetectorResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXDetectorResult.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXGlobalHistogramBinarizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXGlobalHistogramBinarizer.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXGlobalHistogramBinarizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXGlobalHistogramBinarizer.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXGridSampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXGridSampler.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXGridSampler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXGridSampler.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXHybridBinarizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXHybridBinarizer.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXHybridBinarizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXHybridBinarizer.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXIntArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXIntArray.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXIntArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXIntArray.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXPerspectiveTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXPerspectiveTransform.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXPerspectiveTransform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXPerspectiveTransform.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXStringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXStringUtils.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXStringUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/ZXStringUtils.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/detector/ZXMathUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/detector/ZXMathUtils.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/detector/ZXMathUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/detector/ZXMathUtils.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/detector/ZXWhiteRectangleDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/detector/ZXWhiteRectangleDetector.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/detector/ZXWhiteRectangleDetector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/detector/ZXWhiteRectangleDetector.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/reedsolomon/ZXGenericGF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/reedsolomon/ZXGenericGF.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/reedsolomon/ZXGenericGF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/reedsolomon/ZXGenericGF.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/reedsolomon/ZXGenericGFPoly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/reedsolomon/ZXGenericGFPoly.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/reedsolomon/ZXGenericGFPoly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/reedsolomon/ZXGenericGFPoly.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/reedsolomon/ZXReedSolomonDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/reedsolomon/ZXReedSolomonDecoder.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/reedsolomon/ZXReedSolomonDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/reedsolomon/ZXReedSolomonDecoder.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/reedsolomon/ZXReedSolomonEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/reedsolomon/ZXReedSolomonEncoder.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/common/reedsolomon/ZXReedSolomonEncoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/common/reedsolomon/ZXReedSolomonEncoder.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXBarcodeFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXBarcodeFormat.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXBinarizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXBinarizer.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXBinarizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXBinarizer.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXBinaryBitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXBinaryBitmap.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXBinaryBitmap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXBinaryBitmap.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXByteMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXByteMatrix.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXByteMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXByteMatrix.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXDecodeHints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXDecodeHints.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXDecodeHints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXDecodeHints.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXDimension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXDimension.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXDimension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXDimension.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXEncodeHints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXEncodeHints.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXEncodeHints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXEncodeHints.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXErrors.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXErrors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXErrors.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXInvertedLuminanceSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXInvertedLuminanceSource.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXInvertedLuminanceSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXInvertedLuminanceSource.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXLuminanceSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXLuminanceSource.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXLuminanceSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXLuminanceSource.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXPlanarYUVLuminanceSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXPlanarYUVLuminanceSource.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXPlanarYUVLuminanceSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXPlanarYUVLuminanceSource.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXRGBLuminanceSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXRGBLuminanceSource.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXRGBLuminanceSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXRGBLuminanceSource.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXReader.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXResult.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXResult.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXResultMetadataType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXResultMetadataType.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXResultPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXResultPoint.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXResultPoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXResultPoint.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXResultPointCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXResultPointCallback.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXWriter.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXingObjCCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/core/ZXingObjCCore.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/ZXDataMatrixReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/ZXDataMatrixReader.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/ZXDataMatrixReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/ZXDataMatrixReader.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/ZXDataMatrixWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/ZXDataMatrixWriter.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/ZXDataMatrixWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/ZXDataMatrixWriter.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/ZXingObjCDataMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/ZXingObjCDataMatrix.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/decoder/ZXDataMatrixDataBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/decoder/ZXDataMatrixDataBlock.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/decoder/ZXDataMatrixDataBlock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/decoder/ZXDataMatrixDataBlock.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/decoder/ZXDataMatrixDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/decoder/ZXDataMatrixDecoder.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/decoder/ZXDataMatrixDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/decoder/ZXDataMatrixDecoder.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/decoder/ZXDataMatrixVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/decoder/ZXDataMatrixVersion.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/decoder/ZXDataMatrixVersion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/decoder/ZXDataMatrixVersion.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/detector/ZXDataMatrixDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/detector/ZXDataMatrixDetector.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/detector/ZXDataMatrixDetector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/detector/ZXDataMatrixDetector.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/encoder/ZXDataMatrixEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/datamatrix/encoder/ZXDataMatrixEncoder.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/maxicode/ZXMaxiCodeReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/maxicode/ZXMaxiCodeReader.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/maxicode/ZXMaxiCodeReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/maxicode/ZXMaxiCodeReader.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/maxicode/ZXingObjCMaxiCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/maxicode/ZXingObjCMaxiCode.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/maxicode/decoder/ZXMaxiCodeDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/maxicode/decoder/ZXMaxiCodeDecoder.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/maxicode/decoder/ZXMaxiCodeDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/maxicode/decoder/ZXMaxiCodeDecoder.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/multi/ZXByQuadrantReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/multi/ZXByQuadrantReader.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/multi/ZXByQuadrantReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/multi/ZXByQuadrantReader.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/multi/ZXGenericMultipleBarcodeReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/multi/ZXGenericMultipleBarcodeReader.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/multi/ZXGenericMultipleBarcodeReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/multi/ZXGenericMultipleBarcodeReader.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/multi/ZXMultipleBarcodeReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/multi/ZXMultipleBarcodeReader.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCodaBarReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCodaBarReader.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCodaBarReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCodaBarReader.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCodaBarWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCodaBarWriter.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCodaBarWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCodaBarWriter.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCode128Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCode128Reader.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCode128Reader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCode128Reader.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCode128Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCode128Writer.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCode128Writer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCode128Writer.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCode39Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCode39Reader.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCode39Reader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCode39Reader.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCode39Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCode39Writer.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCode39Writer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCode39Writer.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCode93Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCode93Reader.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCode93Reader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXCode93Reader.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXEAN13Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXEAN13Reader.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXEAN13Reader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXEAN13Reader.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXEAN13Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXEAN13Writer.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXEAN13Writer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXEAN13Writer.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXEAN8Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXEAN8Reader.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXEAN8Reader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXEAN8Reader.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXEAN8Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXEAN8Writer.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXEAN8Writer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXEAN8Writer.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXEANManufacturerOrgSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXEANManufacturerOrgSupport.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXEANManufacturerOrgSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXEANManufacturerOrgSupport.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXITFReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXITFReader.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXITFReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXITFReader.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXITFWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXITFWriter.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXITFWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXITFWriter.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXMultiFormatOneDReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXMultiFormatOneDReader.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXMultiFormatOneDReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXMultiFormatOneDReader.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXMultiFormatUPCEANReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXMultiFormatUPCEANReader.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXMultiFormatUPCEANReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXMultiFormatUPCEANReader.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXOneDReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXOneDReader.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXOneDReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXOneDReader.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXOneDimensionalCodeWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXOneDimensionalCodeWriter.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXOneDimensionalCodeWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXOneDimensionalCodeWriter.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCAReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCAReader.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCAReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCAReader.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCAWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCAWriter.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCAWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCAWriter.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEANExtension2Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEANExtension2Support.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEANExtension2Support.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEANExtension2Support.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEANExtension5Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEANExtension5Support.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEANExtension5Support.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEANExtension5Support.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEANExtensionSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEANExtensionSupport.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEANExtensionSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEANExtensionSupport.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEANReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEANReader.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEANReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEANReader.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEANWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEANWriter.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEANWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEANWriter.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEReader.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEReader.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEWriter.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXUPCEWriter.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXingObjCOneD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/ZXingObjCOneD.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/ZXAbstractRSSReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/ZXAbstractRSSReader.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/ZXAbstractRSSReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/ZXAbstractRSSReader.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/ZXRSS14Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/ZXRSS14Reader.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/ZXRSS14Reader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/ZXRSS14Reader.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/ZXRSSDataCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/ZXRSSDataCharacter.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/ZXRSSDataCharacter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/ZXRSSDataCharacter.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/ZXRSSFinderPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/ZXRSSFinderPattern.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/ZXRSSFinderPattern.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/ZXRSSFinderPattern.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/ZXRSSPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/ZXRSSPair.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/ZXRSSPair.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/ZXRSSPair.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/ZXRSSUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/ZXRSSUtils.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/ZXRSSUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/ZXRSSUtils.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/expanded/ZXBitArrayBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/expanded/ZXBitArrayBuilder.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/expanded/ZXBitArrayBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/expanded/ZXBitArrayBuilder.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/expanded/ZXRSSExpandedPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/expanded/ZXRSSExpandedPair.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/expanded/ZXRSSExpandedPair.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/expanded/ZXRSSExpandedPair.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/expanded/ZXRSSExpandedReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/expanded/ZXRSSExpandedReader.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/expanded/ZXRSSExpandedReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/expanded/ZXRSSExpandedReader.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/expanded/ZXRSSExpandedRow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/expanded/ZXRSSExpandedRow.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/expanded/ZXRSSExpandedRow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/expanded/ZXRSSExpandedRow.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/expanded/decoders/ZXAI01decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/expanded/decoders/ZXAI01decoder.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/expanded/decoders/ZXAI01decoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/oned/rss/expanded/decoders/ZXAI01decoder.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/ZXPDF417Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/ZXPDF417Common.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/ZXPDF417Common.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/ZXPDF417Common.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/ZXPDF417Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/ZXPDF417Reader.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/ZXPDF417Reader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/ZXPDF417Reader.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/ZXPDF417ResultMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/ZXPDF417ResultMetadata.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/ZXPDF417ResultMetadata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/ZXPDF417ResultMetadata.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/ZXPDF417Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/ZXPDF417Writer.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/ZXPDF417Writer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/ZXPDF417Writer.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/ZXingObjCPDF417.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/ZXingObjCPDF417.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417BarcodeMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417BarcodeMetadata.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417BarcodeMetadata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417BarcodeMetadata.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417BarcodeValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417BarcodeValue.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417BarcodeValue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417BarcodeValue.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417BoundingBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417BoundingBox.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417BoundingBox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417BoundingBox.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417Codeword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417Codeword.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417Codeword.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417Codeword.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417CodewordDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417CodewordDecoder.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417CodewordDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417CodewordDecoder.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417DetectionResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417DetectionResult.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417DetectionResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417DetectionResult.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417ScanningDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417ScanningDecoder.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417ScanningDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ZXPDF417ScanningDecoder.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ec/ZXModulusGF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ec/ZXModulusGF.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ec/ZXModulusGF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ec/ZXModulusGF.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ec/ZXModulusPoly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ec/ZXModulusPoly.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ec/ZXModulusPoly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/decoder/ec/ZXModulusPoly.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/detector/ZXPDF417Detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/detector/ZXPDF417Detector.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/detector/ZXPDF417Detector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/detector/ZXPDF417Detector.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/detector/ZXPDF417DetectorResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/detector/ZXPDF417DetectorResult.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/detector/ZXPDF417DetectorResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/detector/ZXPDF417DetectorResult.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/encoder/ZXPDF417.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/encoder/ZXPDF417.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/encoder/ZXPDF417.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/encoder/ZXPDF417.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/encoder/ZXPDF417BarcodeMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/encoder/ZXPDF417BarcodeMatrix.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/encoder/ZXPDF417BarcodeMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/encoder/ZXPDF417BarcodeMatrix.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/encoder/ZXPDF417BarcodeRow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/encoder/ZXPDF417BarcodeRow.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/encoder/ZXPDF417BarcodeRow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/encoder/ZXPDF417BarcodeRow.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/encoder/ZXPDF417Dimensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/encoder/ZXPDF417Dimensions.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/encoder/ZXPDF417Dimensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/encoder/ZXPDF417Dimensions.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/encoder/ZXPDF417ErrorCorrection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/encoder/ZXPDF417ErrorCorrection.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/encoder/ZXPDF417ErrorCorrection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/encoder/ZXPDF417ErrorCorrection.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/encoder/ZXPDF417HighLevelEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/encoder/ZXPDF417HighLevelEncoder.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/encoder/ZXPDF417HighLevelEncoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/pdf417/encoder/ZXPDF417HighLevelEncoder.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/ZXQRCodeReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/ZXQRCodeReader.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/ZXQRCodeReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/ZXQRCodeReader.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/ZXQRCodeWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/ZXQRCodeWriter.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/ZXQRCodeWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/ZXQRCodeWriter.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/ZXingObjCQRCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/ZXingObjCQRCode.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeBitMatrixParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeBitMatrixParser.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeBitMatrixParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeBitMatrixParser.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeDataBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeDataBlock.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeDataBlock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeDataBlock.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeDataMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeDataMask.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeDataMask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeDataMask.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeDecoder.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeDecoder.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeDecoderMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeDecoderMetaData.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeDecoderMetaData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeDecoderMetaData.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeFormatInformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeFormatInformation.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeFormatInformation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeFormatInformation.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeMode.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeMode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeMode.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeVersion.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeVersion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/decoder/ZXQRCodeVersion.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/detector/ZXQRCodeAlignmentPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/detector/ZXQRCodeAlignmentPattern.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/detector/ZXQRCodeAlignmentPattern.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/detector/ZXQRCodeAlignmentPattern.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/detector/ZXQRCodeDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/detector/ZXQRCodeDetector.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/detector/ZXQRCodeDetector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/detector/ZXQRCodeDetector.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/detector/ZXQRCodeFinderPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/detector/ZXQRCodeFinderPattern.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/detector/ZXQRCodeFinderPattern.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/detector/ZXQRCodeFinderPattern.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/encoder/ZXQRCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/encoder/ZXQRCode.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/encoder/ZXQRCode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/encoder/ZXQRCode.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/encoder/ZXQRCodeBlockPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/encoder/ZXQRCodeBlockPair.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/encoder/ZXQRCodeBlockPair.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/encoder/ZXQRCodeBlockPair.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/encoder/ZXQRCodeEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/encoder/ZXQRCodeEncoder.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/encoder/ZXQRCodeEncoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/encoder/ZXQRCodeEncoder.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/encoder/ZXQRCodeMaskUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/encoder/ZXQRCodeMaskUtil.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/encoder/ZXQRCodeMaskUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/encoder/ZXQRCodeMaskUtil.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/encoder/ZXQRCodeMatrixUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/encoder/ZXQRCodeMatrixUtil.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/encoder/ZXQRCodeMatrixUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/encoder/ZXQRCodeMatrixUtil.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/multi/ZXQRCodeMultiReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/multi/ZXQRCodeMultiReader.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/multi/ZXQRCodeMultiReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/multi/ZXQRCodeMultiReader.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/multi/detector/ZXMultiDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/multi/detector/ZXMultiDetector.h -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/multi/detector/ZXMultiDetector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ZXingObjC/qrcode/multi/detector/ZXMultiDetector.m -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ios-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ios-Info.plist -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/ios-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/ios-Prefix.pch -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/mac-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/mac-Info.plist -------------------------------------------------------------------------------- /ios/ZXingObjC-3.2.2/osx-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/ios/ZXingObjC-3.2.2/osx-Prefix.pch -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpar-Yazilim/tp-react-native-bluetooth-printer/HEAD/types/index.d.ts --------------------------------------------------------------------------------