├── Analysis ├── AfterMatchSurveyProcessing.py ├── ClassicalML.py ├── EEG_processing.py ├── EncountersDatasetCreation.py ├── EncountersProcessing.py ├── EncountersVisualization.py ├── FeatureImportance.py ├── FetchingReplaysData.py ├── GameDataExtraction.py ├── GeneralAnalyzer.py ├── MetaScript.py ├── PlayerCompositionAnalysis.py ├── PlayerSurveyProcessing.py ├── PlayersResponcesAnalysis.py ├── Predictor.py ├── ProcessingRawData.py ├── README_Analysis.md ├── README_Preprocessing.md ├── RNN.py ├── ROC_AUC_plot.py ├── ResultsAnalysis.py ├── SamplingRatesMissingDataCalculation.py ├── SensorDataProcessing.py ├── SkillPrediction.py ├── SkillPredictionDataset.py ├── SplittingToMatches.py ├── TeamDynamics.py ├── ThermalDataVisualization.py ├── TransArch.py ├── Transformer.py ├── Visualization.py ├── compose_matches.py ├── config.py ├── get_game_start_end_times.py ├── hr_spo2_calc.py ├── hr_spo2_lib.py └── utils.py ├── ArduinoCode ├── CalibrstionValues4GSR ├── Main │ └── Main.ino ├── arduino_0_lib │ ├── arduino_0_lib.cpp │ └── arduino_0_lib.h ├── arduino_1_lib │ ├── arduino_1_lib.cpp │ └── arduino_1_lib.h ├── arduino_2_lib │ ├── arduino_2_lib.cpp │ └── arduino_2_lib.h ├── arduino_3_lib │ ├── arduino_3_lib.cpp │ └── arduino_3_lib.h ├── arduino_4_lib │ ├── arduino_4_lib.cpp │ └── arduino_4_lib.h └── eSportsLibrary │ ├── eSportsLibrary.cpp │ └── eSportsLibrary.h ├── EEG └── cortex-v2-example │ └── python │ ├── README.md │ ├── config.py │ ├── cortex_example_export_record.py │ ├── example.py │ ├── lib │ └── cortex.py │ └── requirements.txt ├── ExperimentalProtocol ├── Experimantal protocol.pages └── Experimantal protocol.pdf ├── FLIROneSDKBundle ├── DeveloperGuide.md ├── Documentation │ ├── allclasses-frame.html │ ├── allclasses-noframe.html │ ├── com │ │ └── flir │ │ │ └── flironesdk │ │ │ ├── Device.BatteryChargingState.html │ │ │ ├── Device.Delegate.html │ │ │ ├── Device.PowerUpdateDelegate.html │ │ │ ├── Device.StreamDelegate.html │ │ │ ├── Device.TuningState.html │ │ │ ├── Device.html │ │ │ ├── EmbeddedDevice.html │ │ │ ├── FlirUsbDevice.html │ │ │ ├── Frame.html │ │ │ ├── FrameProcessor.Delegate.html │ │ │ ├── FrameProcessor.NotAGLRendererException.html │ │ │ ├── FrameProcessor.QueuingOption.html │ │ │ ├── FrameProcessor.html │ │ │ ├── LoadedFrame.html │ │ │ ├── RBPFrame.html │ │ │ ├── RenderedImage.ImageType.html │ │ │ ├── RenderedImage.Palette.html │ │ │ ├── RenderedImage.html │ │ │ ├── SimulatedDevice.html │ │ │ ├── class-use │ │ │ ├── Device.BatteryChargingState.html │ │ │ ├── Device.Delegate.html │ │ │ ├── Device.PowerUpdateDelegate.html │ │ │ ├── Device.StreamDelegate.html │ │ │ ├── Device.TuningState.html │ │ │ ├── Device.html │ │ │ ├── EmbeddedDevice.html │ │ │ ├── FlirUsbDevice.html │ │ │ ├── Frame.html │ │ │ ├── FrameProcessor.Delegate.html │ │ │ ├── FrameProcessor.NotAGLRendererException.html │ │ │ ├── FrameProcessor.QueuingOption.html │ │ │ ├── FrameProcessor.html │ │ │ ├── LoadedFrame.html │ │ │ ├── RBPFrame.html │ │ │ ├── RenderedImage.ImageType.html │ │ │ ├── RenderedImage.Palette.html │ │ │ ├── RenderedImage.html │ │ │ └── SimulatedDevice.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ └── package-use.html │ ├── constant-values.html │ ├── deprecated-list.html │ ├── help-doc.html │ ├── index-all.html │ ├── index.html │ ├── overview-tree.html │ ├── package-list │ ├── script.js │ ├── serialized-form.html │ └── stylesheet.css ├── FLIRONEExampleApplication │ ├── .gradle │ │ ├── 4.4 │ │ │ ├── fileChanges │ │ │ │ └── last-build.bin │ │ │ ├── fileContent │ │ │ │ └── fileContent.lock │ │ │ ├── fileHashes │ │ │ │ ├── fileHashes.bin │ │ │ │ ├── fileHashes.lock │ │ │ │ └── resourceHashesCache.bin │ │ │ ├── javaCompile │ │ │ │ ├── classAnalysis.bin │ │ │ │ ├── jarAnalysis.bin │ │ │ │ ├── javaCompile.lock │ │ │ │ ├── taskHistory.bin │ │ │ │ └── taskJars.bin │ │ │ └── taskHistory │ │ │ │ ├── taskHistory.bin │ │ │ │ └── taskHistory.lock │ │ └── buildOutputCleanup │ │ │ ├── buildOutputCleanup.lock │ │ │ ├── cache.properties │ │ │ └── outputFiles.bin │ ├── .idea │ │ ├── assetWizardSettings.xml │ │ ├── caches │ │ │ ├── build_file_checksums.ser │ │ │ └── gradle_models.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── libraries │ │ │ ├── Gradle___flironesdk__aar.xml │ │ │ ├── Gradle__android_arch_core_common_1_1_0_jar.xml │ │ │ ├── Gradle__android_arch_core_runtime_1_1_0_aar.xml │ │ │ ├── Gradle__android_arch_lifecycle_common_1_1_0_jar.xml │ │ │ ├── Gradle__android_arch_lifecycle_livedata_core_1_1_0_aar.xml │ │ │ ├── Gradle__android_arch_lifecycle_runtime_1_1_0_aar.xml │ │ │ ├── Gradle__android_arch_lifecycle_viewmodel_1_1_0_aar.xml │ │ │ ├── Gradle__com_android_support_animated_vector_drawable_27_1_1_aar.xml │ │ │ ├── Gradle__com_android_support_appcompat_v7_27_1_1_aar.xml │ │ │ ├── Gradle__com_android_support_constraint_constraint_layout_1_1_2_aar.xml │ │ │ ├── Gradle__com_android_support_constraint_constraint_layout_solver_1_1_2_jar.xml │ │ │ ├── Gradle__com_android_support_support_annotations_27_1_1_jar.xml │ │ │ ├── Gradle__com_android_support_support_compat_27_1_1_aar.xml │ │ │ ├── Gradle__com_android_support_support_core_ui_27_1_1_aar.xml │ │ │ ├── Gradle__com_android_support_support_core_utils_27_1_1_aar.xml │ │ │ ├── Gradle__com_android_support_support_fragment_27_1_1_aar.xml │ │ │ ├── Gradle__com_android_support_support_media_compat_27_1_1_aar.xml │ │ │ ├── Gradle__com_android_support_support_v4_27_1_1_aar.xml │ │ │ ├── Gradle__com_android_support_support_vector_drawable_27_1_1_aar.xml │ │ │ ├── Gradle__com_android_support_test_exposed_instrumentation_api_publish_0_5_aar.xml │ │ │ ├── Gradle__com_android_support_test_rules_0_5_aar.xml │ │ │ ├── Gradle__com_android_support_test_runner_0_5_aar.xml │ │ │ ├── Gradle__junit_junit_4_12_jar.xml │ │ │ └── Gradle__org_hamcrest_hamcrest_core_1_3_jar.xml │ │ ├── markdown-navigator.xml │ │ ├── markdown-navigator │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── FLIRONEExampleApplication.iml │ ├── ServerExample │ │ └── streamReceiver.py │ ├── app │ │ ├── app.iml │ │ ├── build.gradle │ │ ├── build │ │ │ ├── generated │ │ │ │ └── source │ │ │ │ │ ├── buildConfig │ │ │ │ │ └── debug │ │ │ │ │ │ └── com │ │ │ │ │ │ └── flir │ │ │ │ │ │ └── flironeexampleapplication │ │ │ │ │ │ └── BuildConfig.java │ │ │ │ │ └── r │ │ │ │ │ └── debug │ │ │ │ │ ├── android │ │ │ │ │ ├── arch │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ └── R.java │ │ │ │ │ │ └── lifecycle │ │ │ │ │ │ │ ├── R.java │ │ │ │ │ │ │ ├── livedata │ │ │ │ │ │ │ └── core │ │ │ │ │ │ │ │ └── R.java │ │ │ │ │ │ │ └── viewmodel │ │ │ │ │ │ │ └── R.java │ │ │ │ │ └── support │ │ │ │ │ │ ├── compat │ │ │ │ │ │ └── R.java │ │ │ │ │ │ ├── constraint │ │ │ │ │ │ └── R.java │ │ │ │ │ │ ├── coreui │ │ │ │ │ │ └── R.java │ │ │ │ │ │ ├── coreutils │ │ │ │ │ │ └── R.java │ │ │ │ │ │ ├── fragment │ │ │ │ │ │ └── R.java │ │ │ │ │ │ ├── graphics │ │ │ │ │ │ └── drawable │ │ │ │ │ │ │ ├── R.java │ │ │ │ │ │ │ └── animated │ │ │ │ │ │ │ └── R.java │ │ │ │ │ │ ├── mediacompat │ │ │ │ │ │ └── R.java │ │ │ │ │ │ ├── v4 │ │ │ │ │ │ └── R.java │ │ │ │ │ │ └── v7 │ │ │ │ │ │ └── appcompat │ │ │ │ │ │ └── R.java │ │ │ │ │ └── com │ │ │ │ │ └── flir │ │ │ │ │ ├── flironeexampleapplication │ │ │ │ │ └── R.java │ │ │ │ │ └── flironesdk │ │ │ │ │ └── R.java │ │ │ ├── intermediates │ │ │ │ ├── blame │ │ │ │ │ └── res │ │ │ │ │ │ └── debug │ │ │ │ │ │ ├── multi-v2 │ │ │ │ │ │ ├── debug.json │ │ │ │ │ │ ├── values-af.json │ │ │ │ │ │ ├── values-am.json │ │ │ │ │ │ ├── values-ar.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-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-v11.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-vi.json │ │ │ │ │ │ ├── values-watch-v20.json │ │ │ │ │ │ ├── values-xlarge-v4.json │ │ │ │ │ │ ├── values-zh-rCN.json │ │ │ │ │ │ ├── values-zh-rHK.json │ │ │ │ │ │ ├── values-zh-rTW.json │ │ │ │ │ │ ├── values-zu.json │ │ │ │ │ │ └── values.json │ │ │ │ │ │ └── single │ │ │ │ │ │ └── debug.json │ │ │ │ ├── classes │ │ │ │ │ └── debug │ │ │ │ │ │ ├── android │ │ │ │ │ │ ├── arch │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ └── R.class │ │ │ │ │ │ │ └── lifecycle │ │ │ │ │ │ │ │ ├── R.class │ │ │ │ │ │ │ │ ├── livedata │ │ │ │ │ │ │ │ └── core │ │ │ │ │ │ │ │ │ └── R.class │ │ │ │ │ │ │ │ └── viewmodel │ │ │ │ │ │ │ │ └── R.class │ │ │ │ │ │ └── support │ │ │ │ │ │ │ ├── compat │ │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ │ └── R.class │ │ │ │ │ │ │ ├── constraint │ │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ │ └── R.class │ │ │ │ │ │ │ ├── coreui │ │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ │ └── R.class │ │ │ │ │ │ │ ├── coreutils │ │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ │ └── R.class │ │ │ │ │ │ │ ├── fragment │ │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ │ └── R.class │ │ │ │ │ │ │ ├── graphics │ │ │ │ │ │ │ └── drawable │ │ │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ │ │ ├── R.class │ │ │ │ │ │ │ │ └── animated │ │ │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ │ │ └── R.class │ │ │ │ │ │ │ ├── mediacompat │ │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ │ └── R.class │ │ │ │ │ │ │ ├── v4 │ │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ │ └── R.class │ │ │ │ │ │ │ └── v7 │ │ │ │ │ │ │ └── appcompat │ │ │ │ │ │ │ ├── R$anim.class │ │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ │ └── R.class │ │ │ │ │ │ └── com │ │ │ │ │ │ └── flir │ │ │ │ │ │ ├── flironeexampleapplication │ │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ │ ├── EditorActivity$1$1.class │ │ │ │ │ │ ├── EditorActivity$1$2.class │ │ │ │ │ │ ├── EditorActivity$1.class │ │ │ │ │ │ ├── EditorActivity$2.class │ │ │ │ │ │ ├── EditorActivity$3.class │ │ │ │ │ │ ├── EditorActivity.class │ │ │ │ │ │ ├── GLPreviewActivity$1.class │ │ │ │ │ │ ├── GLPreviewActivity$10.class │ │ │ │ │ │ ├── GLPreviewActivity$11.class │ │ │ │ │ │ ├── GLPreviewActivity$12.class │ │ │ │ │ │ ├── GLPreviewActivity$13.class │ │ │ │ │ │ ├── GLPreviewActivity$14.class │ │ │ │ │ │ ├── GLPreviewActivity$15.class │ │ │ │ │ │ ├── GLPreviewActivity$16.class │ │ │ │ │ │ ├── GLPreviewActivity$17.class │ │ │ │ │ │ ├── GLPreviewActivity$18.class │ │ │ │ │ │ ├── GLPreviewActivity$19.class │ │ │ │ │ │ ├── GLPreviewActivity$2.class │ │ │ │ │ │ ├── GLPreviewActivity$3.class │ │ │ │ │ │ ├── GLPreviewActivity$4.class │ │ │ │ │ │ ├── GLPreviewActivity$5.class │ │ │ │ │ │ ├── GLPreviewActivity$6.class │ │ │ │ │ │ ├── GLPreviewActivity$7.class │ │ │ │ │ │ ├── GLPreviewActivity$8.class │ │ │ │ │ │ ├── GLPreviewActivity$9.class │ │ │ │ │ │ ├── GLPreviewActivity.class │ │ │ │ │ │ ├── PreviewActivity$1.class │ │ │ │ │ │ ├── PreviewActivity$10.class │ │ │ │ │ │ ├── PreviewActivity$11$1.class │ │ │ │ │ │ ├── PreviewActivity$11$2$1.class │ │ │ │ │ │ ├── PreviewActivity$11$2.class │ │ │ │ │ │ ├── PreviewActivity$11.class │ │ │ │ │ │ ├── PreviewActivity$12.class │ │ │ │ │ │ ├── PreviewActivity$13$1$1.class │ │ │ │ │ │ ├── PreviewActivity$13$1.class │ │ │ │ │ │ ├── PreviewActivity$13.class │ │ │ │ │ │ ├── PreviewActivity$14.class │ │ │ │ │ │ ├── PreviewActivity$15.class │ │ │ │ │ │ ├── PreviewActivity$16.class │ │ │ │ │ │ ├── PreviewActivity$17.class │ │ │ │ │ │ ├── PreviewActivity$18.class │ │ │ │ │ │ ├── PreviewActivity$19.class │ │ │ │ │ │ ├── PreviewActivity$2.class │ │ │ │ │ │ ├── PreviewActivity$20.class │ │ │ │ │ │ ├── PreviewActivity$21.class │ │ │ │ │ │ ├── PreviewActivity$22.class │ │ │ │ │ │ ├── PreviewActivity$23.class │ │ │ │ │ │ ├── PreviewActivity$24.class │ │ │ │ │ │ ├── PreviewActivity$3.class │ │ │ │ │ │ ├── PreviewActivity$4.class │ │ │ │ │ │ ├── PreviewActivity$5.class │ │ │ │ │ │ ├── PreviewActivity$6.class │ │ │ │ │ │ ├── PreviewActivity$7.class │ │ │ │ │ │ ├── PreviewActivity$8.class │ │ │ │ │ │ ├── PreviewActivity$9.class │ │ │ │ │ │ ├── PreviewActivity.class │ │ │ │ │ │ ├── R$anim.class │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$mipmap.class │ │ │ │ │ │ ├── R$raw.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ ├── R$xml.class │ │ │ │ │ │ ├── R.class │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── SystemUiHider$1.class │ │ │ │ │ │ │ ├── SystemUiHider$OnVisibilityChangeListener.class │ │ │ │ │ │ │ ├── SystemUiHider.class │ │ │ │ │ │ │ ├── SystemUiHiderBase.class │ │ │ │ │ │ │ ├── SystemUiHiderHoneycomb$1.class │ │ │ │ │ │ │ └── SystemUiHiderHoneycomb.class │ │ │ │ │ │ └── flironesdk │ │ │ │ │ │ ├── R$anim.class │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$raw.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ ├── incremental │ │ │ │ │ ├── compileDebugAidl │ │ │ │ │ │ └── dependency.store │ │ │ │ │ ├── debug-mergeJavaRes │ │ │ │ │ │ ├── merge-state │ │ │ │ │ │ └── zip-cache │ │ │ │ │ │ │ ├── 0yPkh5Gtl+biDch5+4BjqtiyFc8= │ │ │ │ │ │ │ ├── 4vKPQltbzZn759QAkKTm+9ZGxww= │ │ │ │ │ │ │ ├── 8tR46Gkf_nBGpBIwG9AxIaLoNN0= │ │ │ │ │ │ │ ├── BJeLnEwcgF84ssOkTDHbpQQ2hk0= │ │ │ │ │ │ │ ├── GhjYUzBQip+jVSpFWmw4K4nmyEA= │ │ │ │ │ │ │ ├── QtoIxkgveSg_PjwMF3SOUPoxvG0= │ │ │ │ │ │ │ ├── Sycs5o7wDIDp+DGol3+aqPZhBFU= │ │ │ │ │ │ │ ├── U3ry7zmMsnF+eKDOPdRyndJSXG8= │ │ │ │ │ │ │ ├── drEyJDpkcQ1pGsRdiunS5LHYwMY= │ │ │ │ │ │ │ ├── glRFubeAGKJgtnQ+KZh0LadftS4= │ │ │ │ │ │ │ ├── jI1PdkdjRX3tYOIzDW9bpTJH9w8= │ │ │ │ │ │ │ ├── nYGWRXWv15TPVOVlYZrk5WoJH9Y= │ │ │ │ │ │ │ ├── pYqN8IZF1hWxL+_iJ+l5Jl38FtA= │ │ │ │ │ │ │ ├── ruCU3aAC2mBxsewvWiwqyBtmY7w= │ │ │ │ │ │ │ ├── u+Hq+_LUZLsbZZYiX7+EYW1RzOg= │ │ │ │ │ │ │ ├── wduHdw3yETP9enth7W3dnNO_l+A= │ │ │ │ │ │ │ ├── yK9M0XXRaKj_UFYsRJCSZiTyzYk= │ │ │ │ │ │ │ └── zsYy5JsI+pvDakB4EMVibuqvpHg= │ │ │ │ │ ├── debug-mergeJniLibs │ │ │ │ │ │ ├── merge-state │ │ │ │ │ │ └── zip-cache │ │ │ │ │ │ │ ├── 0yPkh5Gtl+biDch5+4BjqtiyFc8= │ │ │ │ │ │ │ ├── 4vKPQltbzZn759QAkKTm+9ZGxww= │ │ │ │ │ │ │ ├── 8tR46Gkf_nBGpBIwG9AxIaLoNN0= │ │ │ │ │ │ │ ├── BJeLnEwcgF84ssOkTDHbpQQ2hk0= │ │ │ │ │ │ │ ├── GhjYUzBQip+jVSpFWmw4K4nmyEA= │ │ │ │ │ │ │ ├── QtoIxkgveSg_PjwMF3SOUPoxvG0= │ │ │ │ │ │ │ ├── Sycs5o7wDIDp+DGol3+aqPZhBFU= │ │ │ │ │ │ │ ├── U3ry7zmMsnF+eKDOPdRyndJSXG8= │ │ │ │ │ │ │ ├── drEyJDpkcQ1pGsRdiunS5LHYwMY= │ │ │ │ │ │ │ ├── glRFubeAGKJgtnQ+KZh0LadftS4= │ │ │ │ │ │ │ ├── jI1PdkdjRX3tYOIzDW9bpTJH9w8= │ │ │ │ │ │ │ ├── nYGWRXWv15TPVOVlYZrk5WoJH9Y= │ │ │ │ │ │ │ ├── pYqN8IZF1hWxL+_iJ+l5Jl38FtA= │ │ │ │ │ │ │ ├── ruCU3aAC2mBxsewvWiwqyBtmY7w= │ │ │ │ │ │ │ ├── u+Hq+_LUZLsbZZYiX7+EYW1RzOg= │ │ │ │ │ │ │ ├── wduHdw3yETP9enth7W3dnNO_l+A= │ │ │ │ │ │ │ ├── yK9M0XXRaKj_UFYsRJCSZiTyzYk= │ │ │ │ │ │ │ └── zsYy5JsI+pvDakB4EMVibuqvpHg= │ │ │ │ │ ├── mergeDebugAssets │ │ │ │ │ │ └── merger.xml │ │ │ │ │ ├── mergeDebugJniLibFolders │ │ │ │ │ │ └── merger.xml │ │ │ │ │ ├── mergeDebugResources │ │ │ │ │ │ ├── compile-file-map.properties │ │ │ │ │ │ └── merger.xml │ │ │ │ │ ├── mergeDebugShaders │ │ │ │ │ │ └── merger.xml │ │ │ │ │ └── packageDebug │ │ │ │ │ │ └── tmp │ │ │ │ │ │ └── debug │ │ │ │ │ │ ├── dex-renamer-state.txt │ │ │ │ │ │ └── file-input-save-data.txt │ │ │ │ ├── javaPrecompile │ │ │ │ │ └── debug │ │ │ │ │ │ └── annotationProcessors.json │ │ │ │ ├── manifests │ │ │ │ │ ├── density │ │ │ │ │ │ └── debug │ │ │ │ │ │ │ └── output.json │ │ │ │ │ ├── full │ │ │ │ │ │ └── debug │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ └── output.json │ │ │ │ │ └── instant-run │ │ │ │ │ │ └── debug │ │ │ │ │ │ └── output.json │ │ │ │ ├── res │ │ │ │ │ ├── debug │ │ │ │ │ │ ├── output.json │ │ │ │ │ │ └── resources-debug.ap_ │ │ │ │ │ ├── merged │ │ │ │ │ │ └── debug │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ ├── 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_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_edit_text_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_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_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_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_tooltip_frame_dark.xml.flat │ │ │ │ │ │ │ ├── drawable_tooltip_frame_light.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_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_activity_editor.xml.flat │ │ │ │ │ │ │ ├── layout_activity_gl_preview.xml.flat │ │ │ │ │ │ │ ├── layout_activity_preview.xml.flat │ │ │ │ │ │ │ ├── layout_emptytextview.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_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_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 │ │ │ │ │ │ │ ├── mipmap-hdpi_ic_launcher.png.flat │ │ │ │ │ │ │ ├── mipmap-mdpi_ic_launcher.png.flat │ │ │ │ │ │ │ ├── mipmap-xhdpi_ic_launcher.png.flat │ │ │ │ │ │ │ ├── mipmap-xxhdpi_ic_launcher.png.flat │ │ │ │ │ │ │ ├── mipmap-xxxhdpi_ic_launcher.png.flat │ │ │ │ │ │ │ ├── raw_arctic.pal.flat │ │ │ │ │ │ │ ├── raw_blackhot.pal.flat │ │ │ │ │ │ │ ├── raw_bw.pal.flat │ │ │ │ │ │ │ ├── raw_coldest.pal.flat │ │ │ │ │ │ │ ├── raw_colorwheel12.pal.flat │ │ │ │ │ │ │ ├── raw_colorwheel6.pal.flat │ │ │ │ │ │ │ ├── raw_default_camera_files.zip.flat │ │ │ │ │ │ │ ├── raw_hottest.pal.flat │ │ │ │ │ │ │ ├── raw_iron.pal.flat │ │ │ │ │ │ │ ├── raw_lava.pal.flat │ │ │ │ │ │ │ ├── raw_rainbow.pal.flat │ │ │ │ │ │ │ ├── raw_rainhc.pal.flat │ │ │ │ │ │ │ ├── raw_sampleframes.zip.flat │ │ │ │ │ │ │ ├── raw_whitehot.pal.flat │ │ │ │ │ │ │ ├── values-af_values-af.arsc.flat │ │ │ │ │ │ │ ├── values-am_values-am.arsc.flat │ │ │ │ │ │ │ ├── values-ar_values-ar.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-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-v11_values-v11.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-vi_values-vi.arsc.flat │ │ │ │ │ │ │ ├── values-watch-v20_values-watch-v20.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_device_filter.xml.flat │ │ │ │ │ └── symbol-table-with-package │ │ │ │ │ │ └── debug │ │ │ │ │ │ └── package-aware-r.txt │ │ │ │ ├── splits-support │ │ │ │ │ └── debug │ │ │ │ │ │ ├── apk-list │ │ │ │ │ │ └── apk-list.gson │ │ │ │ │ │ └── split-list │ │ │ │ │ │ └── split-list.gson │ │ │ │ ├── symbols │ │ │ │ │ └── debug │ │ │ │ │ │ └── R.txt │ │ │ │ └── transforms │ │ │ │ │ ├── dexBuilder │ │ │ │ │ └── debug │ │ │ │ │ │ ├── 0.jar │ │ │ │ │ │ ├── 1.jar │ │ │ │ │ │ ├── 15.jar │ │ │ │ │ │ ├── 17.jar │ │ │ │ │ │ ├── 18.jar │ │ │ │ │ │ ├── 19.jar │ │ │ │ │ │ ├── 2.jar │ │ │ │ │ │ ├── 20.jar │ │ │ │ │ │ ├── 21.jar │ │ │ │ │ │ ├── 22.jar │ │ │ │ │ │ ├── 3.jar │ │ │ │ │ │ ├── 4.jar │ │ │ │ │ │ ├── 5.jar │ │ │ │ │ │ ├── 6.jar │ │ │ │ │ │ ├── 7.jar │ │ │ │ │ │ ├── 8.jar │ │ │ │ │ │ ├── 9.jar │ │ │ │ │ │ └── __content__.json │ │ │ │ │ ├── dexMerger │ │ │ │ │ └── debug │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ └── classes.dex │ │ │ │ │ │ └── __content__.json │ │ │ │ │ ├── externalLibsDexMerger │ │ │ │ │ └── debug │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ └── classes.dex │ │ │ │ │ │ └── __content__.json │ │ │ │ │ ├── mergeJavaRes │ │ │ │ │ └── debug │ │ │ │ │ │ ├── 0.jar │ │ │ │ │ │ └── __content__.json │ │ │ │ │ └── mergeJniLibs │ │ │ │ │ └── debug │ │ │ │ │ ├── 0 │ │ │ │ │ └── lib │ │ │ │ │ │ ├── arm64-v8a │ │ │ │ │ │ ├── libRBPDeviceWrapper.so │ │ │ │ │ │ ├── libbacktrace_custom.so │ │ │ │ │ │ ├── libbase.so │ │ │ │ │ │ ├── libbinder.so │ │ │ │ │ │ ├── libboost.so │ │ │ │ │ │ ├── libc++_custom.so │ │ │ │ │ │ ├── libc++_shared.so │ │ │ │ │ │ ├── libcutils.so │ │ │ │ │ │ ├── liblzma.so │ │ │ │ │ │ ├── libmbwrapper.so │ │ │ │ │ │ ├── librbp.so │ │ │ │ │ │ ├── libsystemimage.so │ │ │ │ │ │ ├── libthermalcamera_client.so │ │ │ │ │ │ ├── libtigerdeps.so │ │ │ │ │ │ ├── libunwind.so │ │ │ │ │ │ ├── libutils.so │ │ │ │ │ │ ├── libvndksupport.so │ │ │ │ │ │ └── libzmq.so │ │ │ │ │ │ ├── armeabi-v7a │ │ │ │ │ │ ├── libRBPDeviceWrapper.so │ │ │ │ │ │ ├── libbacktrace_custom.so │ │ │ │ │ │ ├── libbase.so │ │ │ │ │ │ ├── libbinder.so │ │ │ │ │ │ ├── libboost.so │ │ │ │ │ │ ├── libc++_custom.so │ │ │ │ │ │ ├── libc++_shared.so │ │ │ │ │ │ ├── libcutils.so │ │ │ │ │ │ ├── liblzma.so │ │ │ │ │ │ ├── libmbwrapper.so │ │ │ │ │ │ ├── librbp.so │ │ │ │ │ │ ├── libsystemimage.so │ │ │ │ │ │ ├── libthermalcamera_client.so │ │ │ │ │ │ ├── libtigerdeps.so │ │ │ │ │ │ ├── libunwind.so │ │ │ │ │ │ ├── libutils.so │ │ │ │ │ │ └── libzmq.so │ │ │ │ │ │ └── x86 │ │ │ │ │ │ ├── libRBPDeviceWrapper.so │ │ │ │ │ │ ├── libboost.so │ │ │ │ │ │ ├── libc++_shared.so │ │ │ │ │ │ ├── libmbwrapper.so │ │ │ │ │ │ ├── librbp.so │ │ │ │ │ │ ├── libsystemimage.so │ │ │ │ │ │ ├── libtigerdeps.so │ │ │ │ │ │ └── libzmq.so │ │ │ │ │ └── __content__.json │ │ │ └── outputs │ │ │ │ ├── apk │ │ │ │ └── debug │ │ │ │ │ ├── app-debug.apk │ │ │ │ │ └── output.json │ │ │ │ └── logs │ │ │ │ └── manifest-merger-debug-report.txt │ │ ├── libs │ │ │ └── flironesdk.aar │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── flir │ │ │ │ └── flironeexampleapplication │ │ │ │ ├── ApplicationTest.java │ │ │ │ └── FLIROneSDKTest.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-web.png │ │ │ ├── java │ │ │ └── com │ │ │ │ └── flir │ │ │ │ └── flironeexampleapplication │ │ │ │ ├── EditorActivity.java │ │ │ │ ├── GLPreviewActivity.java │ │ │ │ ├── PreviewActivity.java │ │ │ │ └── util │ │ │ │ ├── SystemUiHider.java │ │ │ │ ├── SystemUiHiderBase.java │ │ │ │ └── SystemUiHiderHoneycomb.java │ │ │ ├── record_button_picture-web.png │ │ │ ├── res │ │ │ ├── drawable │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ ├── record_button_picture_background.xml │ │ │ │ └── stop_button_picture_background.xml │ │ │ ├── layout │ │ │ │ ├── activity_editor.xml │ │ │ │ ├── activity_gl_preview.xml │ │ │ │ ├── activity_preview.xml │ │ │ │ └── emptytextview.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ ├── ic_launcher_round.xml │ │ │ │ ├── record_button_picture.xml │ │ │ │ ├── record_button_picture_round.xml │ │ │ │ ├── stop_button_picture.xml │ │ │ │ └── stop_button_picture_round.xml │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ ├── record_button_picture.png │ │ │ │ ├── record_button_picture_foreground.png │ │ │ │ ├── record_button_picture_round.png │ │ │ │ ├── stop_button_picture.png │ │ │ │ ├── stop_button_picture_foreground.png │ │ │ │ └── stop_button_picture_round.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ ├── record_button_picture.png │ │ │ │ ├── record_button_picture_foreground.png │ │ │ │ ├── record_button_picture_round.png │ │ │ │ ├── stop_button_picture.png │ │ │ │ ├── stop_button_picture_foreground.png │ │ │ │ └── stop_button_picture_round.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ ├── record_button_picture.png │ │ │ │ ├── record_button_picture_foreground.png │ │ │ │ ├── record_button_picture_round.png │ │ │ │ ├── stop_button_picture.png │ │ │ │ ├── stop_button_picture_foreground.png │ │ │ │ └── stop_button_picture_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ ├── record_button_picture.png │ │ │ │ ├── record_button_picture_foreground.png │ │ │ │ ├── record_button_picture_round.png │ │ │ │ ├── stop_button_picture.png │ │ │ │ ├── stop_button_picture_foreground.png │ │ │ │ └── stop_button_picture_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ ├── record_button_picture.png │ │ │ │ ├── record_button_picture_foreground.png │ │ │ │ ├── record_button_picture_round.png │ │ │ │ ├── stop_button_picture.png │ │ │ │ ├── stop_button_picture_foreground.png │ │ │ │ └── stop_button_picture_round.png │ │ │ ├── raw │ │ │ │ └── sampleframes.zip │ │ │ ├── values-v11 │ │ │ │ └── styles.xml │ │ │ ├── values │ │ │ │ ├── attrs.xml │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── xml │ │ │ │ └── device_filter.xml │ │ │ └── stop_button_picture-web.png │ ├── build.gradle │ ├── captures │ │ ├── com.flir.flironeexampleapplication_2017.06.08_14.20-1.txt │ │ └── com.flir.flironeexampleapplication_2017.06.08_14.20.txt │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── local.properties │ └── settings.gradle └── flironesdk.aar ├── InputLogger └── InputLogger.py ├── LICENSE ├── Misc ├── fixing_corrupted_files.py └── ntp_update_time.py ├── PolarDataCollection ├── LICENSE ├── README.md ├── __pycache__ │ └── utils.cpython-37.pyc ├── accesslink │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── accesslink.cpython-37.pyc │ │ └── oauth2.cpython-37.pyc │ ├── accesslink.py │ ├── endpoints │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── daily_activity.cpython-37.pyc │ │ │ ├── daily_activity_transaction.cpython-37.pyc │ │ │ ├── physical_info.cpython-37.pyc │ │ │ ├── physical_info_transaction.cpython-37.pyc │ │ │ ├── pull_notifications.cpython-37.pyc │ │ │ ├── resource.cpython-37.pyc │ │ │ ├── training_data.cpython-37.pyc │ │ │ ├── training_data_transaction.cpython-37.pyc │ │ │ ├── transaction.cpython-37.pyc │ │ │ └── users.cpython-37.pyc │ │ ├── daily_activity.py │ │ ├── daily_activity_transaction.py │ │ ├── physical_info.py │ │ ├── physical_info_transaction.py │ │ ├── pull_notifications.py │ │ ├── resource.py │ │ ├── training_data.py │ │ ├── training_data_transaction.py │ │ ├── transaction.py │ │ └── users.py │ └── oauth2.py ├── accesslink_example.py ├── authorization.py ├── config.yml ├── fetch_exercise_data.py ├── file_parsing.py ├── main.py ├── players_credentials.json ├── requirements.txt └── utils.py ├── README.md └── Server ├── FTPServer.py ├── GUI.py ├── Icons ├── Icon-Mac-OS.png └── Icon_0.ico ├── SignalCommandSamples.py └── UDPServer.py /Analysis/PlayerCompositionAnalysis.py: -------------------------------------------------------------------------------- 1 | import pandas as pd 2 | from config import * 3 | 4 | df_players = pd.read_csv(dataset_folder + 'players_info.csv') 5 | df_players 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ArduinoCode/CalibrstionValues4GSR: -------------------------------------------------------------------------------- 1 | GSR_0: 2048 2 | GSR_1: 2048 3 | GSR_2: 2048 4 | GSR_3: 2048 5 | GSR_4: 2048 -------------------------------------------------------------------------------- /ArduinoCode/Main/Main.ino: -------------------------------------------------------------------------------- 1 | #include "eSportsLibrary.h" 2 | #include "arduino_2_lib.h" 3 | 4 | const int playerID = 4; 5 | 6 | void setup() { 7 | generalInit(); 8 | arduinoInit(); 9 | } 10 | -------------------------------------------------------------------------------- /EEG/cortex-v2-example/python/config.py: -------------------------------------------------------------------------------- 1 | headset_id2player_id = { 2 | 'INSIGHT-A1D2038C': '0', 3 | 'INSIGHT-A1D203CD': '1', 4 | 'INSIGHT-A1D20395': '2', 5 | 'INSIGHT-A1D20397': '3', 6 | 'INSIGHT-A1D203B0': '4', 7 | } 8 | 9 | TIME_FORMAT = '%Y-%m-%d-%H:%M:%S.%f' 10 | TIME_FORMAT4FILES = '%Y-%m-%d-%H-%M-%S' 11 | -------------------------------------------------------------------------------- /EEG/cortex-v2-example/python/requirements.txt: -------------------------------------------------------------------------------- 1 | # websocket is different from websockets? 2 | websockets 3 | flake8 4 | -------------------------------------------------------------------------------- /ExperimentalProtocol/Experimantal protocol.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/ExperimentalProtocol/Experimantal protocol.pages -------------------------------------------------------------------------------- /ExperimentalProtocol/Experimantal protocol.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/ExperimentalProtocol/Experimantal protocol.pdf -------------------------------------------------------------------------------- /FLIROneSDKBundle/Documentation/package-list: -------------------------------------------------------------------------------- 1 | com.flir.flironesdk 2 | -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/4.4/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/4.4/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/4.4/fileContent/fileContent.lock -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/4.4/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/4.4/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/4.4/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/4.4/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/4.4/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/4.4/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/4.4/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/4.4/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/4.4/javaCompile/jarAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/4.4/javaCompile/jarAnalysis.bin -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/4.4/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/4.4/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/4.4/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/4.4/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/4.4/javaCompile/taskJars.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/4.4/javaCompile/taskJars.bin -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/4.4/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/4.4/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/4.4/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/4.4/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Sat Oct 26 18:21:58 CEST 2019 2 | gradle.version=4.4 3 | -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/.idea/caches/gradle_models.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/.idea/caches/gradle_models.ser -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/.idea/markdown-navigator/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/arch/core/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/arch/core/R.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/arch/lifecycle/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/arch/lifecycle/R.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/arch/lifecycle/livedata/core/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/arch/lifecycle/livedata/core/R.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/arch/lifecycle/viewmodel/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/arch/lifecycle/viewmodel/R.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/compat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/compat/R$attr.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/compat/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/compat/R$bool.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/compat/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/compat/R$color.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/compat/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/compat/R$dimen.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/compat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/compat/R$drawable.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/compat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/compat/R$id.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/compat/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/compat/R$integer.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/compat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/compat/R$layout.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/compat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/compat/R$string.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/compat/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/compat/R$style.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/compat/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/compat/R$styleable.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/compat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/compat/R.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/constraint/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/constraint/R$attr.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/constraint/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/constraint/R$id.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/constraint/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/constraint/R$styleable.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/constraint/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/constraint/R.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreui/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreui/R$attr.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreui/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreui/R$bool.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreui/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreui/R$color.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreui/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreui/R$dimen.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreui/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreui/R$drawable.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreui/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreui/R$id.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreui/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreui/R$integer.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreui/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreui/R$layout.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreui/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreui/R$string.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreui/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreui/R$style.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreui/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreui/R$styleable.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreui/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreui/R.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreutils/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreutils/R$attr.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreutils/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreutils/R$bool.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreutils/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreutils/R$color.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreutils/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreutils/R$dimen.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreutils/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreutils/R$drawable.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreutils/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreutils/R$id.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreutils/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreutils/R$integer.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreutils/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreutils/R$layout.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreutils/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreutils/R$string.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreutils/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreutils/R$style.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreutils/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreutils/R$styleable.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreutils/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/coreutils/R.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/fragment/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/fragment/R$attr.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/fragment/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/fragment/R$bool.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/fragment/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/fragment/R$color.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/fragment/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/fragment/R$dimen.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/fragment/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/fragment/R$drawable.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/fragment/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/fragment/R$id.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/fragment/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/fragment/R$integer.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/fragment/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/fragment/R$layout.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/fragment/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/fragment/R$string.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/fragment/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/fragment/R$style.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/fragment/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/fragment/R$styleable.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/fragment/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/fragment/R.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$attr.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$bool.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$color.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$dimen.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$drawable.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$id.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$integer.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$layout.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$string.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$style.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/graphics/drawable/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/graphics/drawable/R.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/graphics/drawable/animated/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/graphics/drawable/animated/R.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/mediacompat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/mediacompat/R$attr.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/mediacompat/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/mediacompat/R$bool.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/mediacompat/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/mediacompat/R$color.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/mediacompat/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/mediacompat/R$dimen.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/mediacompat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/mediacompat/R$drawable.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/mediacompat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/mediacompat/R$id.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/mediacompat/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/mediacompat/R$integer.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/mediacompat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/mediacompat/R$layout.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/mediacompat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/mediacompat/R$string.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/mediacompat/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/mediacompat/R$style.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/mediacompat/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/mediacompat/R$styleable.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/mediacompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/mediacompat/R.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v4/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v4/R$attr.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v4/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v4/R$bool.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v4/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v4/R$color.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v4/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v4/R$dimen.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v4/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v4/R$drawable.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v4/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v4/R$id.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v4/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v4/R$integer.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v4/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v4/R$layout.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v4/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v4/R$string.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v4/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v4/R$style.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v4/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v4/R$styleable.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v4/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v4/R.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$anim.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$attr.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$bool.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$color.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$dimen.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$drawable.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$id.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$integer.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$layout.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$string.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$style.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$styleable.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v7/appcompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/android/support/v7/appcompat/R.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R$anim.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R$attr.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R$bool.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R$color.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R$dimen.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R$id.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R$integer.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R$layout.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R$mipmap.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R$mipmap.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R$raw.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R$raw.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R$string.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R$style.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R$xml.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R$xml.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironeexampleapplication/R.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R$anim.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R$attr.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R$bool.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R$color.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R$dimen.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R$drawable.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R$id.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R$integer.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R$layout.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R$raw.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R$raw.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R$string.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R$style.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R$styleable.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/classes/debug/com/flir/flironesdk/R.class -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/incremental/compileDebugAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/incremental/debug-mergeJniLibs/merge-state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/incremental/debug-mergeJniLibs/merge-state -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt: -------------------------------------------------------------------------------- 1 | #Fri Nov 29 10:06:31 CET 2019 2 | base.0=/Users/asm/Projects/AffectiveComputingDKFI/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexMerger/debug/0 3 | path.0=classes.dex 4 | renamed.0=classes.dex 5 | -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/javaPrecompile/debug/annotationProcessors.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/manifests/density/debug/output.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/debug/resources-debug.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/debug/resources-debug.ap_ -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/anim_abc_fade_in.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/anim_abc_fade_in.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/anim_abc_fade_out.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/anim_abc_fade_out.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/anim_abc_grow_fade_in_from_bottom.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/anim_abc_grow_fade_in_from_bottom.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/anim_abc_popup_enter.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/anim_abc_popup_enter.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/anim_abc_popup_exit.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/anim_abc_popup_exit.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/anim_abc_shrink_fade_out_from_bottom.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/anim_abc_shrink_fade_out_from_bottom.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/anim_abc_slide_in_bottom.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/anim_abc_slide_in_bottom.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/anim_abc_slide_in_top.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/anim_abc_slide_in_top.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/anim_abc_slide_out_bottom.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/anim_abc_slide_out_bottom.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/anim_abc_slide_out_top.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/anim_abc_slide_out_top.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/anim_abc_tooltip_enter.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/anim_abc_tooltip_enter.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/anim_abc_tooltip_exit.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/anim_abc_tooltip_exit.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color-v23_abc_color_highlight_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color-v23_abc_color_highlight_material.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color-v23_abc_tint_btn_checkable.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color-v23_abc_tint_btn_checkable.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color-v23_abc_tint_default.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color-v23_abc_tint_default.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color-v23_abc_tint_edittext.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color-v23_abc_tint_edittext.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color-v23_abc_tint_seek_thumb.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color-v23_abc_tint_seek_thumb.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color-v23_abc_tint_spinner.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color-v23_abc_tint_spinner.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color-v23_abc_tint_switch_track.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color-v23_abc_tint_switch_track.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color_abc_btn_colored_text_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color_abc_btn_colored_text_material.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color_abc_primary_text_material_dark.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color_abc_primary_text_material_dark.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color_abc_primary_text_material_light.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color_abc_primary_text_material_light.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color_abc_search_url_text.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color_abc_search_url_text.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color_abc_secondary_text_material_dark.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color_abc_secondary_text_material_dark.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color_abc_tint_btn_checkable.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color_abc_tint_btn_checkable.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color_abc_tint_default.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color_abc_tint_default.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color_abc_tint_edittext.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color_abc_tint_edittext.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color_abc_tint_seek_thumb.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color_abc_tint_seek_thumb.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color_abc_tint_spinner.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color_abc_tint_spinner.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color_abc_tint_switch_track.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color_abc_tint_switch_track.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color_switch_thumb_material_dark.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color_switch_thumb_material_dark.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color_switch_thumb_material_light.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/color_switch_thumb_material_light.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable-v21_abc_btn_colored_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable-v21_abc_btn_colored_material.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable-v21_abc_edit_text_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable-v21_abc_edit_text_material.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_btn_borderless_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_btn_borderless_material.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_btn_check_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_btn_check_material.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_btn_default_mtrl_shape.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_btn_default_mtrl_shape.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_btn_radio_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_btn_radio_material.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_ic_ab_back_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_ic_ab_back_material.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_ic_clear_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_ic_clear_material.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_ic_search_api_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_ic_search_api_material.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_list_selector_holo_dark.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_list_selector_holo_dark.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_ratingbar_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_ratingbar_material.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_seekbar_thumb_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_seekbar_thumb_material.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_seekbar_track_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_seekbar_track_material.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_switch_thumb_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_switch_thumb_material.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_tab_indicator_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_tab_indicator_material.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_text_cursor_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_text_cursor_material.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_vector_test.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_abc_vector_test.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_notification_bg.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_notification_bg.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_notification_bg_low.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_notification_bg_low.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_notification_tile_bg.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_notification_tile_bg.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_tooltip_frame_dark.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_tooltip_frame_dark.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_tooltip_frame_light.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/drawable_tooltip_frame_light.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout-v21_notification_action.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout-v21_notification_action.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout-v26_abc_screen_toolbar.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout-v26_abc_screen_toolbar.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_action_bar_title_item.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_action_bar_title_item.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_action_bar_up_container.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_action_bar_up_container.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_action_menu_item_layout.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_action_menu_item_layout.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_action_menu_layout.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_action_menu_layout.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_action_mode_bar.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_action_mode_bar.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_alert_dialog_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_alert_dialog_material.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_dialog_title_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_dialog_title_material.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_expanded_menu_layout.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_expanded_menu_layout.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_checkbox.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_checkbox.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_icon.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_icon.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_layout.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_layout.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_radio.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_radio.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_popup_menu_item_layout.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_popup_menu_item_layout.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_screen_content_include.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_screen_content_include.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_screen_simple.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_screen_simple.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_screen_toolbar.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_screen_toolbar.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_search_view.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_search_view.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_select_dialog_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_select_dialog_material.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_tooltip.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_abc_tooltip.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_activity_editor.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_activity_editor.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_activity_gl_preview.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_activity_gl_preview.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_activity_preview.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_activity_preview.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_emptytextview.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_emptytextview.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_notification_media_action.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_notification_media_action.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_notification_template_media.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_notification_template_media.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_select_dialog_item_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/layout_select_dialog_item_material.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/mipmap-hdpi_ic_launcher.png.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/mipmap-hdpi_ic_launcher.png.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/mipmap-mdpi_ic_launcher.png.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/mipmap-mdpi_ic_launcher.png.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/mipmap-xhdpi_ic_launcher.png.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/mipmap-xhdpi_ic_launcher.png.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/mipmap-xxhdpi_ic_launcher.png.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/mipmap-xxhdpi_ic_launcher.png.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/mipmap-xxxhdpi_ic_launcher.png.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/mipmap-xxxhdpi_ic_launcher.png.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_arctic.pal.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_arctic.pal.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_blackhot.pal.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_blackhot.pal.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_bw.pal.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_bw.pal.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_coldest.pal.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_coldest.pal.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_colorwheel12.pal.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_colorwheel12.pal.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_colorwheel6.pal.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_colorwheel6.pal.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_default_camera_files.zip.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_default_camera_files.zip.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_hottest.pal.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_hottest.pal.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_iron.pal.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_iron.pal.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_lava.pal.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_lava.pal.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_rainbow.pal.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_rainbow.pal.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_rainhc.pal.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_rainhc.pal.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_sampleframes.zip.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_sampleframes.zip.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_whitehot.pal.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/raw_whitehot.pal.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-af_values-af.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-af_values-af.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-am_values-am.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-am_values-am.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ar_values-ar.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ar_values-ar.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-az_values-az.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-az_values-az.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-be_values-be.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-be_values-be.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-bg_values-bg.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-bg_values-bg.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-bn_values-bn.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-bn_values-bn.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-bs_values-bs.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-bs_values-bs.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ca_values-ca.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ca_values-ca.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-cs_values-cs.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-cs_values-cs.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-da_values-da.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-da_values-da.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-de_values-de.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-de_values-de.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-el_values-el.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-el_values-el.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-en-rAU_values-en-rAU.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-en-rAU_values-en-rAU.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-en-rCA_values-en-rCA.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-en-rCA_values-en-rCA.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-en-rGB_values-en-rGB.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-en-rGB_values-en-rGB.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-en-rIN_values-en-rIN.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-en-rIN_values-en-rIN.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-en-rXC_values-en-rXC.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-en-rXC_values-en-rXC.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-es-rUS_values-es-rUS.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-es-rUS_values-es-rUS.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-es_values-es.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-es_values-es.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-et_values-et.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-et_values-et.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-eu_values-eu.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-eu_values-eu.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-fa_values-fa.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-fa_values-fa.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-fi_values-fi.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-fi_values-fi.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-fr-rCA_values-fr-rCA.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-fr-rCA_values-fr-rCA.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-fr_values-fr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-fr_values-fr.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-gl_values-gl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-gl_values-gl.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-gu_values-gu.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-gu_values-gu.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-hi_values-hi.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-hi_values-hi.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-hr_values-hr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-hr_values-hr.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-hu_values-hu.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-hu_values-hu.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-hy_values-hy.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-hy_values-hy.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-in_values-in.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-in_values-in.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-is_values-is.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-is_values-is.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-it_values-it.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-it_values-it.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-iw_values-iw.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-iw_values-iw.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ja_values-ja.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ja_values-ja.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ka_values-ka.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ka_values-ka.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-kk_values-kk.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-kk_values-kk.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-km_values-km.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-km_values-km.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-kn_values-kn.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-kn_values-kn.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ko_values-ko.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ko_values-ko.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ky_values-ky.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ky_values-ky.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-land_values-land.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-land_values-land.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-large-v4_values-large-v4.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-large-v4_values-large-v4.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-lo_values-lo.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-lo_values-lo.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-lt_values-lt.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-lt_values-lt.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-lv_values-lv.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-lv_values-lv.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-mk_values-mk.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-mk_values-mk.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ml_values-ml.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ml_values-ml.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-mn_values-mn.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-mn_values-mn.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-mr_values-mr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-mr_values-mr.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ms_values-ms.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ms_values-ms.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-my_values-my.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-my_values-my.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-nb_values-nb.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-nb_values-nb.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ne_values-ne.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ne_values-ne.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-night-v8_values-night-v8.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-night-v8_values-night-v8.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-nl_values-nl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-nl_values-nl.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-pa_values-pa.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-pa_values-pa.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-pl_values-pl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-pl_values-pl.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-port_values-port.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-port_values-port.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-pt-rBR_values-pt-rBR.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-pt-rBR_values-pt-rBR.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-pt-rPT_values-pt-rPT.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-pt-rPT_values-pt-rPT.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-pt_values-pt.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-pt_values-pt.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ro_values-ro.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ro_values-ro.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ru_values-ru.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ru_values-ru.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-si_values-si.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-si_values-si.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-sk_values-sk.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-sk_values-sk.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-sl_values-sl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-sl_values-sl.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-sq_values-sq.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-sq_values-sq.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-sr_values-sr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-sr_values-sr.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-sv_values-sv.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-sv_values-sv.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-sw_values-sw.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-sw_values-sw.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ta_values-ta.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ta_values-ta.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-te_values-te.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-te_values-te.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-th_values-th.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-th_values-th.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-tl_values-tl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-tl_values-tl.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-tr_values-tr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-tr_values-tr.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-uk_values-uk.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-uk_values-uk.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ur_values-ur.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-ur_values-ur.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-uz_values-uz.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-uz_values-uz.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-v11_values-v11.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-v11_values-v11.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-v16_values-v16.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-v16_values-v16.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-v17_values-v17.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-v17_values-v17.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-v18_values-v18.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-v18_values-v18.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-v21_values-v21.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-v21_values-v21.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-v22_values-v22.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-v22_values-v22.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-v23_values-v23.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-v23_values-v23.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-v24_values-v24.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-v24_values-v24.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-v25_values-v25.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-v25_values-v25.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-v26_values-v26.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-v26_values-v26.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-vi_values-vi.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-vi_values-vi.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-watch-v20_values-watch-v20.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-watch-v20_values-watch-v20.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-zh-rCN_values-zh-rCN.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-zh-rCN_values-zh-rCN.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-zh-rHK_values-zh-rHK.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-zh-rHK_values-zh-rHK.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-zh-rTW_values-zh-rTW.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-zh-rTW_values-zh-rTW.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-zu_values-zu.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values-zu_values-zu.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values_values.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/values_values.arsc.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/xml_device_filter.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/res/merged/debug/xml_device_filter.xml.flat -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/splits-support/debug/apk-list/apk-list.gson: -------------------------------------------------------------------------------- 1 | [{"type":"MAIN","splits":[],"versionCode":21,"versionName":"3.1.2","enabled":true,"outputFile":"app-debug.apk","fullName":"debug","baseName":"debug"}] -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/splits-support/debug/split-list/split-list.gson: -------------------------------------------------------------------------------- 1 | [{"splitType":"DENSITY","filters":[]},{"splitType":"LANGUAGE","filters":[]},{"splitType":"ABI","filters":[]},{"splitType":"ResConfigs","filters":[]}] -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/0.jar -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/1.jar -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/15.jar -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/17.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/17.jar -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/18.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/18.jar -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/19.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/19.jar -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/2.jar -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/20.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/20.jar -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/21.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/21.jar -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/22.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/22.jar -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/3.jar -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/4.jar -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/5.jar -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/6.jar: -------------------------------------------------------------------------------- 1 | PK -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/7.jar -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/8.jar -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexBuilder/debug/9.jar -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexMerger/debug/0/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexMerger/debug/0/classes.dex -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/dexMerger/debug/__content__.json: -------------------------------------------------------------------------------- 1 | [{"name":"main","index":0,"scopes":["SUB_PROJECTS","PROJECT","EXTERNAL_LIBRARIES"],"types":["DEX"],"format":"DIRECTORY","present":true}] -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/externalLibsDexMerger/debug/0/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/externalLibsDexMerger/debug/0/classes.dex -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/externalLibsDexMerger/debug/__content__.json: -------------------------------------------------------------------------------- 1 | [{"name":"main","index":0,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"DIRECTORY","present":true}] -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJavaRes/debug/0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJavaRes/debug/0.jar -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJavaRes/debug/__content__.json: -------------------------------------------------------------------------------- 1 | [{"name":"resources","index":0,"scopes":["PROJECT","SUB_PROJECTS","EXTERNAL_LIBRARIES"],"types":["RESOURCES"],"format":"JAR","present":true}] -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libbase.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libbase.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libbinder.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libbinder.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libboost.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libboost.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libc++_custom.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libc++_custom.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libc++_shared.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libc++_shared.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libcutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libcutils.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/liblzma.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/liblzma.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libmbwrapper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libmbwrapper.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/librbp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/librbp.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libtigerdeps.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libtigerdeps.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libunwind.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libunwind.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libutils.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libzmq.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libzmq.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libbase.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libbase.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libbinder.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libbinder.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libboost.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libboost.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libcutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libcutils.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/liblzma.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/liblzma.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/librbp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/librbp.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libunwind.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libunwind.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libutils.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libzmq.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libzmq.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libRBPDeviceWrapper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libRBPDeviceWrapper.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libboost.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libboost.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libc++_shared.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libc++_shared.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libmbwrapper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libmbwrapper.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/librbp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/librbp.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libsystemimage.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libsystemimage.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libtigerdeps.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libtigerdeps.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libzmq.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libzmq.so -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/intermediates/transforms/mergeJniLibs/debug/__content__.json: -------------------------------------------------------------------------------- 1 | [{"name":"resources","index":0,"scopes":["PROJECT","SUB_PROJECTS","EXTERNAL_LIBRARIES"],"types":["NATIVE_LIBS"],"format":"DIRECTORY","present":true}] -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/outputs/apk/debug/app-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/build/outputs/apk/debug/app-debug.apk -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/build/outputs/apk/debug/output.json: -------------------------------------------------------------------------------- 1 | [{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":21,"versionName":"3.1.2","enabled":true,"outputFile":"app-debug.apk","fullName":"debug","baseName":"debug"},"path":"app-debug.apk","properties":{}}] -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/libs/flironesdk.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/libs/flironesdk.aar -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/record_button_picture-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/record_button_picture-web.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-hdpi/record_button_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-hdpi/record_button_picture.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-hdpi/record_button_picture_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-hdpi/record_button_picture_foreground.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-hdpi/record_button_picture_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-hdpi/record_button_picture_round.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-hdpi/stop_button_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-hdpi/stop_button_picture.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-hdpi/stop_button_picture_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-hdpi/stop_button_picture_foreground.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-hdpi/stop_button_picture_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-hdpi/stop_button_picture_round.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-mdpi/record_button_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-mdpi/record_button_picture.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-mdpi/record_button_picture_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-mdpi/record_button_picture_foreground.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-mdpi/record_button_picture_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-mdpi/record_button_picture_round.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-mdpi/stop_button_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-mdpi/stop_button_picture.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-mdpi/stop_button_picture_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-mdpi/stop_button_picture_foreground.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-mdpi/stop_button_picture_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-mdpi/stop_button_picture_round.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xhdpi/record_button_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xhdpi/record_button_picture.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xhdpi/record_button_picture_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xhdpi/record_button_picture_foreground.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xhdpi/record_button_picture_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xhdpi/record_button_picture_round.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xhdpi/stop_button_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xhdpi/stop_button_picture.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xhdpi/stop_button_picture_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xhdpi/stop_button_picture_foreground.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xhdpi/stop_button_picture_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xhdpi/stop_button_picture_round.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxhdpi/record_button_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxhdpi/record_button_picture.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxhdpi/record_button_picture_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxhdpi/record_button_picture_foreground.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxhdpi/record_button_picture_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxhdpi/record_button_picture_round.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxhdpi/stop_button_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxhdpi/stop_button_picture.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxhdpi/stop_button_picture_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxhdpi/stop_button_picture_foreground.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxhdpi/stop_button_picture_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxhdpi/stop_button_picture_round.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxxhdpi/record_button_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxxhdpi/record_button_picture.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxxhdpi/record_button_picture_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxxhdpi/record_button_picture_foreground.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxxhdpi/record_button_picture_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxxhdpi/record_button_picture_round.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxxhdpi/stop_button_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxxhdpi/stop_button_picture.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxxhdpi/stop_button_picture_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxxhdpi/stop_button_picture_foreground.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxxhdpi/stop_button_picture_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/mipmap-xxxhdpi/stop_button_picture_round.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/raw/sampleframes.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/raw/sampleframes.zip -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #66000000 4 | 5 | 6 | -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/res/xml/device_filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/stop_button_picture-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/app/src/main/stop_button_picture-web.png -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/FLIRONEExampleApplication/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Jun 21 15:31:48 PDT 2018 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip 7 | -------------------------------------------------------------------------------- /FLIROneSDKBundle/FLIRONEExampleApplication/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /FLIROneSDKBundle/flironesdk.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/FLIROneSDKBundle/flironesdk.aar -------------------------------------------------------------------------------- /PolarDataCollection/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/PolarDataCollection/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /PolarDataCollection/accesslink/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | """Python wrapper for Polar Open AccessLink API""" 3 | 4 | from .accesslink import AccessLink 5 | -------------------------------------------------------------------------------- /PolarDataCollection/accesslink/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/PolarDataCollection/accesslink/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /PolarDataCollection/accesslink/__pycache__/accesslink.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/PolarDataCollection/accesslink/__pycache__/accesslink.cpython-37.pyc -------------------------------------------------------------------------------- /PolarDataCollection/accesslink/__pycache__/oauth2.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/PolarDataCollection/accesslink/__pycache__/oauth2.cpython-37.pyc -------------------------------------------------------------------------------- /PolarDataCollection/accesslink/endpoints/__init__.py: -------------------------------------------------------------------------------- 1 | from .users import Users 2 | from .pull_notifications import PullNotifications 3 | from .daily_activity import DailyActivity 4 | from .physical_info import PhysicalInfo 5 | from .training_data import TrainingData 6 | -------------------------------------------------------------------------------- /PolarDataCollection/accesslink/endpoints/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/PolarDataCollection/accesslink/endpoints/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /PolarDataCollection/accesslink/endpoints/__pycache__/daily_activity.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/PolarDataCollection/accesslink/endpoints/__pycache__/daily_activity.cpython-37.pyc -------------------------------------------------------------------------------- /PolarDataCollection/accesslink/endpoints/__pycache__/daily_activity_transaction.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/PolarDataCollection/accesslink/endpoints/__pycache__/daily_activity_transaction.cpython-37.pyc -------------------------------------------------------------------------------- /PolarDataCollection/accesslink/endpoints/__pycache__/physical_info.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/PolarDataCollection/accesslink/endpoints/__pycache__/physical_info.cpython-37.pyc -------------------------------------------------------------------------------- /PolarDataCollection/accesslink/endpoints/__pycache__/physical_info_transaction.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/PolarDataCollection/accesslink/endpoints/__pycache__/physical_info_transaction.cpython-37.pyc -------------------------------------------------------------------------------- /PolarDataCollection/accesslink/endpoints/__pycache__/pull_notifications.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/PolarDataCollection/accesslink/endpoints/__pycache__/pull_notifications.cpython-37.pyc -------------------------------------------------------------------------------- /PolarDataCollection/accesslink/endpoints/__pycache__/resource.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/PolarDataCollection/accesslink/endpoints/__pycache__/resource.cpython-37.pyc -------------------------------------------------------------------------------- /PolarDataCollection/accesslink/endpoints/__pycache__/training_data.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/PolarDataCollection/accesslink/endpoints/__pycache__/training_data.cpython-37.pyc -------------------------------------------------------------------------------- /PolarDataCollection/accesslink/endpoints/__pycache__/training_data_transaction.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/PolarDataCollection/accesslink/endpoints/__pycache__/training_data_transaction.cpython-37.pyc -------------------------------------------------------------------------------- /PolarDataCollection/accesslink/endpoints/__pycache__/transaction.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/PolarDataCollection/accesslink/endpoints/__pycache__/transaction.cpython-37.pyc -------------------------------------------------------------------------------- /PolarDataCollection/accesslink/endpoints/__pycache__/users.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/PolarDataCollection/accesslink/endpoints/__pycache__/users.cpython-37.pyc -------------------------------------------------------------------------------- /PolarDataCollection/config.yml: -------------------------------------------------------------------------------- 1 | access_token: 3d4e32ae77224438f8b1190718b8053d 2 | client_id: 7ae98c5c-f47d-41e0-a85b-6aaefa0fb2fb 3 | client_secret: 98ec9ebe-be50-483d-ad56-23425ad71681 4 | user_id: 44531932 5 | -------------------------------------------------------------------------------- /PolarDataCollection/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | pyyaml 3 | requests 4 | -------------------------------------------------------------------------------- /Server/Icons/Icon-Mac-OS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/Server/Icons/Icon-Mac-OS.png -------------------------------------------------------------------------------- /Server/Icons/Icon_0.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smerdov/DataCollectionSystem/f0c465f54263e69baea934fe3ae243d5e4f0bb49/Server/Icons/Icon_0.ico --------------------------------------------------------------------------------